27 lines
535 B
TypeScript
27 lines
535 B
TypeScript
![]() |
import BasicWindow from "../../Components/BasicWindow";
|
||
|
import Button from "../../Components/Button";
|
||
|
|
||
|
function AdminProjectPage(): JSX.Element {
|
||
|
const content = <></>;
|
||
|
|
||
|
const buttons = (
|
||
|
<>
|
||
|
<Button
|
||
|
text="Delete"
|
||
|
onClick={(): void => {
|
||
|
return;
|
||
|
}}
|
||
|
/>
|
||
|
<Button
|
||
|
text="Back"
|
||
|
onClick={(): void => {
|
||
|
return;
|
||
|
}}
|
||
|
/>
|
||
|
</>
|
||
|
);
|
||
|
|
||
|
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
||
|
}
|
||
|
export default AdminProjectPage;
|