Files
UT-Registration-Plus/src/views/components/Settings.tsx
2024-02-17 13:02:06 -06:00

15 lines
343 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) {
return <div className={className}>this will be finished laterrrrrrr</div>;
}