import React, { useState } from 'react' import TextInput from '../_text_input' const TextInputCustom = (props) => { const [name, setName] = useState('') const handleUpdateName = ({ target }) => { setName(target.value) } return (