TTime/frontend/src/Pages/AdminPages/AdminAddProject.tsx
2024-03-18 00:44:56 +01:00

16 lines
417 B
TypeScript

import AddProject from "../../Components/AddProject";
import BackButton from "../../Components/BackButton";
import BasicWindow from "../../Components/BasicWindow";
function AdminAddProject(): JSX.Element {
const content = <AddProject />;
const buttons = (
<>
<BackButton />
</>
);
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
}
export default AdminAddProject;