/** @jsx h */
import React from 'react'
import h from '../../helpers/h'
function Bold(props) {
return React.createElement('strong', { ...props.attributes }, props.children)
}
function renderMark(props, next) {
switch (props.mark.type) {
case 'bold':
return Bold(props)
default:
return next()
}
}
export const props = {
renderMark,
}
export const value = (