TTime/frontend/src/Pages/AdminPages/AdminProjectStatistics.tsx

16 lines
351 B
TypeScript
Raw Normal View History

2024-03-20 15:33:26 +01:00
import BackButton from "../../Components/BackButton";
import BasicWindow from "../../Components/BasicWindow";
function AdminProjectStatistics(): JSX.Element {
const content = <></>;
const buttons = (
<>
2024-03-20 15:33:26 +01:00
<BackButton />
</>
);
return <BasicWindow content={content} buttons={buttons} />;
}
export default AdminProjectStatistics;