import Test from './test-component'; export const testProp = 50;
This example uses:
mdx
@babel/preset-react
for the React components we import
Notes: These are presenter notes. This text will be automatically exported as notes
from your MDX file (e.g. import {notes} from './my-file.mdx'
).
Notes: here are some more notes.
How sweet is that (super sweet)
Standard Text
Example Quote
import { createClient, Provider } from 'urql';
const client = createClient({ url: 'https://0ufyz.sse.codesandbox.io' });
const App = () => (
<Provider value={client}>
<Todos />
</Provider>
);