React Hooks let you use state and other features in functional components. They simplify code and promote reusable logic.## useState```jsxfunction Counter() {  const [count, setCount] = useState(