This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import React from 'react' | |
import Markdown from './Markdown' | |
const components = { | |
h1: props => <h1 style={{ color: 'tomato' }} {...props} /> | |
} | |
const scope = { | |
name: 'world!', | |
Box: props => <div style={{border: 'thin solid tomato'}} {...props} /> |