import {useState} from 'react'; function Count() { let [count,setCount] = useState(0); function handleAdd() { setCount(count + 1); } function handleReduce() { setCount(count - 1); } return ( <>