20 lines
442 B
TypeScript
20 lines
442 B
TypeScript
import BasicWindow from "../../Components/BasicWindow";
|
|
import BackButton from "../../Components/BackButton";
|
|
import UserProjectMenu from "../../Components/UserProjectMenu";
|
|
|
|
function UserProjectPage(): JSX.Element {
|
|
const content = (
|
|
<>
|
|
<UserProjectMenu />
|
|
</>
|
|
);
|
|
|
|
const buttons = (
|
|
<>
|
|
<BackButton />
|
|
</>
|
|
);
|
|
|
|
return <BasicWindow content={content} buttons={buttons} />;
|
|
}
|
|
export default UserProjectPage;
|