mirror of
https://github.com/jxnblk/mdx-deck.git
synced 2024-11-26 00:35:02 +03:00
60 lines
637 B
Plaintext
60 lines
637 B
Plaintext
import {
|
|
Invert,
|
|
Split,
|
|
SplitRight,
|
|
Horizontal,
|
|
FullScreenCode,
|
|
} from '@mdx-deck/layouts'
|
|
|
|
# Hello!
|
|
|
|
---
|
|
|
|
<Invert>
|
|
|
|
## Invert Layout
|
|
|
|
</Invert>
|
|
|
|
---
|
|
|
|
<Split>
|
|
|
|
![](https://source.unsplash.com/random/768x2048?brooklyn)
|
|
|
|
## Split Layout
|
|
|
|
</Split>
|
|
|
|
---
|
|
|
|
<SplitRight>
|
|
|
|
![](https://source.unsplash.com/random/768x2048?brooklyn)
|
|
|
|
## SplitRight Layout
|
|
|
|
</SplitRight>
|
|
|
|
---
|
|
|
|
<Horizontal>
|
|
|
|
## Horizontal Layout
|
|
|
|
![](https://source.unsplash.com/random/768x2048?brooklyn)
|
|
|
|
![](https://source.unsplash.com/random/768x2048?brooklyn)
|
|
|
|
</Horizontal>
|
|
|
|
---
|
|
|
|
<FullScreenCode>
|
|
|
|
```jsx
|
|
<Button>FullScreenCode Layout</Button>
|
|
```
|
|
|
|
</FullScreenCode>
|