/** @jsx h */ import React from 'react' import h from '../../helpers/h' function Bold(props) { return React.createElement('strong', null, props.children) } function renderMark(props) { switch (props.mark.type) { case 'bold': return Bold(props) } } export const props = { renderMark, } export const value = ( onetwothree ) export const output = `
one two three
`.trim()