import React from 'react'; import Character from './Character.jsx'; module.exports = (props) => { const text = '' + props.children; const chars = text.split(''); return
{chars.map((character, index) => { return {character}; })};
; }; // TODO: Require that props.children be a string