create empty settings component - waiting on design

This commit is contained in:
DhruvArora-03
2024-02-17 13:02:06 -06:00
parent 5aef43496f
commit 42d24f6367
2 changed files with 33 additions and 0 deletions

View File

@@ -0,0 +1,14 @@
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>;
}