TTime/frontend/src/Pages/YourProjectsPage.tsx

17 lines
359 B
TypeScript
Raw Normal View History

import BasicWindow from "../Components/BasicWindow";
import DisplayUserProjects from "../Components/DisplayUserProjects";
function UserProjectPage(): JSX.Element {
2024-03-07 11:43:19 +01:00
const content = (
2024-03-19 09:14:30 +01:00
<>
<DisplayUserProjects />
2024-03-19 09:14:30 +01:00
</>
);
2024-03-07 11:43:19 +01:00
const buttons = <></>;
return <BasicWindow content={content} buttons={buttons} />;
}
export default UserProjectPage;