import React from 'react' import { RIETextArea } from 'riek' const Title = (props) => { return ( { const ENTER = 13 if (e.which === ENTER) { e.preventDefault() props.onChange({ name: e.target.value }) } } }} /> ) } /* * Title.propTypes = { * name: PropTypes.string, * onChange: PropTypes.func * } */ export default Title