import React, { useEffect, useState } from 'react'; const ChildAdd = () => { const [tel, setTel] = useState(''); async function handleClick() { try { const formdata = new FormData(); formdata.append('tel', tel); axios.post('/api/children/checkTel', formdata) .then(response => { }); } catch (error) { console.log('error', error); } } return (

子追加

1
setTel(e.target.value)} value={tel} className="input-default input-tel input-h60 input-w480" id="tel" />
) } export default ChildAdd;