ShiftSync/src/pages/Settings/Settings.jsx

17 lines
299 B
React
Raw Normal View History

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