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