2024-03-18 10:07:59 +01:00
|
|
|
import BasicWindow from "../Components/BasicWindow";
|
2024-03-19 21:22:49 +01:00
|
|
|
import DisplayUserProjects from "../Components/DisplayUserProjects";
|
2024-03-18 12:49:58 +01:00
|
|
|
|
2024-03-18 10:07:59 +01:00
|
|
|
function UserProjectPage(): JSX.Element {
|
2024-03-07 11:43:19 +01:00
|
|
|
const content = (
|
2024-03-19 09:14:30 +01:00
|
|
|
<>
|
2024-03-19 21:22:49 +01:00
|
|
|
<DisplayUserProjects />
|
2024-03-19 09:14:30 +01:00
|
|
|
</>
|
2024-03-07 10:05:45 +01:00
|
|
|
);
|
2024-03-07 11:43:19 +01:00
|
|
|
|
|
|
|
const buttons = <></>;
|
|
|
|
|
2024-03-18 21:56:37 +01:00
|
|
|
return <BasicWindow content={content} buttons={buttons} />;
|
2024-03-07 10:05:45 +01:00
|
|
|
}
|
2024-03-18 10:07:59 +01:00
|
|
|
|
|
|
|
export default UserProjectPage;
|