1
1
mirror of https://github.com/jxnblk/mdx-deck.git synced 2024-09-11 06:35:24 +03:00
mdx-deck/examples/syntax-highlighting/deck.mdx
2020-02-02 12:45:23 -05:00

18 lines
209 B
Plaintext

import { future, highlight } from '@mdx-deck/themes'
export const theme = {
...future,
...highlight
}
# Hello!
---
```jsx
import React from 'react'
export default props =>
<h1>Highlighting</h1>
```