/** @jsx h */ import React from 'react' import h from '../../helpers/h' class Bold extends React.Component { render() { return ( React.createElement('strong', {}, this.props.children) ) } } export const schema = { marks: { bold: Bold, } } export const state = ( onetwothree ) export const output = `
one two three
`.trim()