function Button(Props) { const { children, onClick } = Props; return ( ); } export default function NumberInput(Props) { const { value = 0, setValue, max, min } = Props; return (
setValue(e.target.value)} />
); }