Files
UT-Registration-Plus/src/views/components/Settings.tsx
2024-03-06 15:12:44 -06:00

16 lines
397 B
TypeScript

import React from 'react';
type Props = {
className?: string;
};
/**
* Component to hold everything for the settings page
* @param props className
* @returns The content for the settings page
*/
export default function Settings({ className }: Props): JSX.Element {
// TODO: Implement the settings page
return <div className={className}>this will be finished laterrrrrrr</div>;
}