Add UserViewStatistics component to UserPages

This commit is contained in:
Davenludd 2024-04-14 15:24:52 +02:00
parent ac5e67d77f
commit 6c64dfcb0e

View file

@ -0,0 +1,21 @@
import BackButton from "../../Components/BackButton";
import BasicWindow from "../../Components/BasicWindow";
import UserStatistics from "../../Components/UserStatistics";
function UserNewTimeReportPage(): JSX.Element {
const content = (
<>
<h1 className="font-bold text-[30px] mb-[20px]"></h1>
<UserStatistics />
</>
);
const buttons = (
<>
<BackButton />
</>
);
return <BasicWindow content={content} buttons={buttons} />;
}
export default UserNewTimeReportPage;