import React from 'react'; import Input from '../../components/input'; class InputTest extends React.Component { state = { normal: 'Tony Stark', fixedLabel: '', withIcon: '', withCustomIcon: '', withHintCustomIcon: '', multilineHint: 'Long Description here', multilineRows: 'A\n\B\nC\nD\nE\nF' }; handleChange = (name, value) => { this.setState({...this.state, [name]: value}); }; render () { return (
Inputs

lorem ipsum...

); } } export default InputTest;