ShiftSync/src/pages/Home/Home.jsx

17 lines
304 B
React
Raw Normal View History

2025-05-20 16:28:48 +00:00
import React, { useContext, useEffect } from 'react';
import { Link } from 'react-router-dom';
export const Home = () => {
useEffect(() => {
document.title = 'ShiftSync | Home'
}, []);
return (
<div>
<h1>Home Page</h1>
<Link to="/about">Go to About</Link>
</div>
);
};