function useCounter() {
  const [count, setCount] = useState(0);

  function increment() {
    setCount(count + 1);