Skip to content

Instantly share code, notes, and snippets.

View Bogd1y's full-sized avatar
🎯
Focusing

Bogd1y

🎯
Focusing
View GitHub Profile
@johno
johno / App.js
Created April 16, 2018 21:15
Dynamic MDX rendering
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} />