Home.js 224 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 import { useEffect } from "react"; import { useNavigate } from "react-router-dom"; const Home = () => { const navigate = useNavigate(); useEffect(() => navigate("/calendar/month"), [navigate]); }; export default Home;