Small fixes to layout and added

This commit is contained in:
Peter KW 2024-03-18 00:44:56 +01:00
parent 0044b61ac8
commit 844e94ed26

View file

@ -1,25 +1,13 @@
import AddProject from "../../Components/AddProject";
import BackButton from "../../Components/BackButton";
import BasicWindow from "../../Components/BasicWindow"; import BasicWindow from "../../Components/BasicWindow";
import Button from "../../Components/Button";
function AdminAddProject(): JSX.Element { function AdminAddProject(): JSX.Element {
const content = <></>; const content = <AddProject />;
const buttons = ( const buttons = (
<> <>
<Button <BackButton />
text="Finish"
onClick={(): void => {
return;
}}
type="button"
/>
<Button
text="Back"
onClick={(): void => {
return;
}}
type="button"
/>
</> </>
); );