frontend-opensource-project / use-react-hooks

React hoooooooks😎
5 stars 0 forks source link

[URH-24] useScrollY μ‹ κ·œ #39

Closed bicochan closed 1 month ago

bicochan commented 1 month ago

πŸ‘Ύ Pull Request

1️⃣ Spec

2️⃣ λ³€κ²½ 사항

3️⃣ μ˜ˆμ‹œ μ½”λ“œ

function App() {
  const { moveTrigger } = useScrollY();

  useEffect(() => {
    moveTrigger();
  }, []);

  return (
    <div>
      <h1>USE-REACT-HOOKS</h1>
    </div>
  );
}

export default App;