2024-03-07 10:05:45 +01:00
|
|
|
import BasicWindow from "../../Components/BasicWindow";
|
2024-03-15 15:28:35 +01:00
|
|
|
import BackButton from "../../Components/BackButton";
|
2024-03-19 21:59:37 +01:00
|
|
|
import UserProjectMenu from "../../Components/UserProjectMenu";
|
2024-03-07 10:05:45 +01:00
|
|
|
|
2024-03-07 11:48:34 +01:00
|
|
|
function UserProjectPage(): JSX.Element {
|
|
|
|
const content = (
|
|
|
|
<>
|
2024-03-19 21:59:37 +01:00
|
|
|
<UserProjectMenu />
|
2024-03-07 11:48:34 +01:00
|
|
|
</>
|
|
|
|
);
|
2024-03-07 10:05:45 +01:00
|
|
|
|
2024-03-07 11:48:34 +01:00
|
|
|
const buttons = (
|
|
|
|
<>
|
2024-03-15 15:28:35 +01:00
|
|
|
<BackButton />
|
2024-03-07 11:48:34 +01:00
|
|
|
</>
|
2024-03-07 10:05:45 +01:00
|
|
|
);
|
2024-03-07 11:48:34 +01:00
|
|
|
|
2024-03-18 21:55:47 +01:00
|
|
|
return <BasicWindow content={content} buttons={buttons} />;
|
2024-03-07 10:05:45 +01:00
|
|
|
}
|
2024-03-07 11:48:34 +01:00
|
|
|
export default UserProjectPage;
|