17 lines
362 B
TypeScript
17 lines
362 B
TypeScript
import "../index.css";
|
|
import { Link } from "react-router-dom";
|
|
|
|
/**
|
|
* The settings page of the application
|
|
* @returns {JSX.Element} The settings page
|
|
*/
|
|
export default function SettingsPage(): JSX.Element {
|
|
return (
|
|
<>
|
|
<h1>Very Fancy Settings Page</h1>
|
|
<div className="card">
|
|
<Link to="/">To Home</Link>
|
|
</div>
|
|
</>
|
|
);
|
|
}
|