17 lines
292 B
React
17 lines
292 B
React
|
|
import React, { useEffect } from 'react';
|
||
|
|
import { Link } from 'react-router-dom';
|
||
|
|
|
||
|
|
export const About = () => {
|
||
|
|
|
||
|
|
useEffect(() => {
|
||
|
|
document.title = 'ShiftSync | About Us'
|
||
|
|
}, []);
|
||
|
|
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<h1>About Page</h1>
|
||
|
|
<Link to="/">Go to Home</Link>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|