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