/** @jsx h */ import React from 'react' import h from '../../helpers/h' function Emoji(props) { return ( React.createElement('img', props.attributes) ) } function renderNode(props) { switch (props.node.type) { case 'emoji': return Emoji(props) } } export const props = { renderNode, } export const state = ( ) export const output = `
`.trim()