mirror of
https://github.com/jxnblk/mdx-deck.git
synced 2024-11-26 00:35:02 +03:00
19 lines
262 B
Plaintext
19 lines
262 B
Plaintext
import future from '@mdx-deck/themes/future'
|
|
import highlight from '@mdx-deck/themes/syntax-highlighter-prism'
|
|
|
|
export const themes = [
|
|
future,
|
|
highlight
|
|
]
|
|
|
|
# Hello!
|
|
|
|
---
|
|
|
|
```jsx
|
|
import React from 'react'
|
|
|
|
export default props =>
|
|
<h1>Highlighting</h1>
|
|
```
|