import React from 'react'; import Input from '../../components/input'; class InputTest extends React.Component { state = { normal: 'Tony Stark', fixedLabel: '', withIcon: '', withCustomIcon: '' }; handleChange = (name, value) => { this.setState({...this.state, [name]: value}); }; render () { return (
Inputs

lorem ipsum...

P} />
); } } export default InputTest;