import React, { useState } from 'react' import { Body, Caption, Inline, TextInput, Title } from '../../' const InlineTextOptions = (props) => { const [formFields, setFormFields] = useState({ inputOne: 'Input One', inputTwo: 'Input Two', inputThree: 'Input Three', inputFour: 'Input Four', }) const handleChange = ({ target }) => { const { name, value } = target setFormFields({ ...formFields, [name]: value }) } return (
} formInput={ } /> } formInput={ } /> } formInput={ } /> } formInput={ } />
) } export default InlineTextOptions