mirror of
https://github.com/jxnblk/mdx-deck.git
synced 2024-11-30 00:44:20 +03:00
103 lines
1.6 KiB
Plaintext
103 lines
1.6 KiB
Plaintext
export { rye as theme } from '../themes'
|
||
import { Image, Notes, Appear } from '../dist'
|
||
import { Invert, Split, SplitRight } from '../layouts'
|
||
|
||
# mdx-deck
|
||
|
||
MDX-based presention decks
|
||
---
|
||
# Presentation decks
|
||
---
|
||
# Built with [MDX][]
|
||
[MDX]: https://github.com/mdx-js/mdx
|
||
---
|
||
import Box from 'superbox'
|
||
|
||
<Box
|
||
fontSize={3}
|
||
p={4}
|
||
bg='magenta'>
|
||
Import React components
|
||
</Box>
|
||
---
|
||
|
||
- Make bulleted lists
|
||
- To help make your point
|
||
|
||
---
|
||
|
||
## Getting Started
|
||
|
||
1. `npm i -D mdx-deck`
|
||
2. Write some markdown and JSX
|
||
3. Present
|
||
|
||
---
|
||
|
||
```jsx
|
||
<button>code example</button>
|
||
```
|
||
|
||
```notes
|
||
- These are speaker notes
|
||
- And they won't rendered in your slide
|
||
```
|
||
---
|
||
> “Blockquotes are essential to any good presentation”
|
||
|
||
– Anonymous
|
||
|
||
<Notes>
|
||
<ul>
|
||
<li>Speaker notes can also be</li>
|
||
<li>Written in JSX</li>
|
||
</ul>
|
||
</Notes>
|
||
|
||
---
|
||
### Appear
|
||
|
||
<ul>
|
||
<Appear>
|
||
<li>One</li>
|
||
<li>Two</li>
|
||
<li>Three</li>
|
||
<li>Four</li>
|
||
</Appear>
|
||
</ul>
|
||
---
|
||
|
||
<Image src='https://images.unsplash.com/photo-1462331940025-496dfbfc7564?w=2048&q=20' />
|
||
|
||
---
|
||
export default Split
|
||
|
||
![](https://images.unsplash.com/photo-1462331940025-496dfbfc7564?w=2048&q=20)
|
||
|
||
## Split Layout
|
||
|
||
---
|
||
export default Invert
|
||
|
||
# Invert Layout
|
||
|
||
---
|
||
|
||
![](https://images.unsplash.com/photo-1462331940025-496dfbfc7564?w=2048&h=1024&q=20&fit=crop)
|
||
|
||
Inline image
|
||
|
||
---
|
||
|
||
Prop | Type | Description
|
||
---|---|---
|
||
`width` | number, string, or array | sets element width
|
||
`color` | string | sets foreground color
|
||
`bg` | string | sets background color
|
||
|
||
---
|
||
export default Invert
|
||
|
||
# Get started :sunglasses:
|
||
[GitHub](https://github.com/jxnblk/mdx-deck)
|