import Inferno from 'inferno'; import Component from 'inferno-component'; export class WordForm extends Component { constructor (props) { super(props); } render () { return (
{this.props.partsOfSpeech.map((partOfSpeech) => { return ( {partOfSpeech} ); })}