import React, { useEffect } from 'react'; import { Link } from 'react-router-dom'; export const Settings = () => { useEffect(() => { document.title = 'ShiftSync | Settings'; }, []); return (

Settings Page

Go to Home
); };