2024-03-14 14:44:04 +01:00
|
|
|
import BasicWindow from "../../Components/BasicWindow";
|
|
|
|
import Button from "../../Components/Button";
|
|
|
|
|
|
|
|
function AdminProjectStatistics(): JSX.Element {
|
|
|
|
const content = <></>;
|
|
|
|
|
|
|
|
const buttons = (
|
|
|
|
<>
|
|
|
|
<Button
|
|
|
|
text="Back"
|
|
|
|
onClick={(): void => {
|
|
|
|
return;
|
|
|
|
}}
|
2024-03-15 14:34:08 +01:00
|
|
|
type="button"
|
2024-03-14 14:44:04 +01:00
|
|
|
/>
|
|
|
|
</>
|
|
|
|
);
|
|
|
|
|
|
|
|
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
|
|
|
}
|
|
|
|
export default AdminProjectStatistics;
|