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 = (value, ev) => { this.setState({[ev.target.name]: value }); }; render() { return (
Inputs

lorem ipsum...

); } } export default InputTest;