Add UserViewStatistics component to UserPages
This commit is contained in:
parent
ac5e67d77f
commit
6c64dfcb0e
1 changed files with 21 additions and 0 deletions
21
frontend/src/Pages/UserPages/UserViewStatistics.tsx
Normal file
21
frontend/src/Pages/UserPages/UserViewStatistics.tsx
Normal 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;
|
Loading…
Reference in a new issue