17 lines
304 B
React
17 lines
304 B
React
|
|
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>
|
||
|
|
);
|
||
|
|
};
|