16 lines
400 B
TypeScript
16 lines
400 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 content={content} buttons={buttons} />;
|
|
}
|
|
export default AdminAddProject;
|