javascriptimport styled from "styled-components";import React, {useState} from "react";const Root = styled.div``;export default function Home() { const [input, setInput] = useState(''); const onChangeHandle = (e) => { setInput(e.target.value); console.log("input : " + input); } return ( onChange={e => onChangeHandle(e)} value={input} /> )}