/** @jsx h */ import React from 'react' import h from '../../helpers/h' export const schema = { nodes: { link: (props) => { return ( React.createElement('a', { href: props.node.data.get('href'), ...props.attributes }, props.children) ) } } } export const state = ( word ) export const output = `
word
`.trim()