import {Box, Button} from "@mui/material"; import {useEffect, useState} from "react"; export const SetCount = ({onCount, defaultValue=1, height=55, width=50}) => { let [count, setCount] = useState(defaultValue) useEffect(() => { onCount(count) }, [count, onCount]) return ( ) }