diff --git a/frontend/src/Pages/UserPages/UserViewStatistics.tsx b/frontend/src/Pages/UserPages/UserViewStatistics.tsx new file mode 100644 index 0000000..a59e32f --- /dev/null +++ b/frontend/src/Pages/UserPages/UserViewStatistics.tsx @@ -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 = ( + <> +

+ + + ); + + const buttons = ( + <> + + + ); + + return ; +} +export default UserNewTimeReportPage;