Created three new empty pages for basic user
This commit is contained in:
parent
4d23f8acea
commit
7c51f586ce
3 changed files with 30 additions and 0 deletions
10
frontend/src/Pages/UserPages/UserEditTimeReportPage.tsx
Normal file
10
frontend/src/Pages/UserPages/UserEditTimeReportPage.tsx
Normal file
|
@ -0,0 +1,10 @@
|
|||
import BasicWindow from "../../Components/BasicWindow";
|
||||
|
||||
function UserEditTimeReportPage(): JSX.Element {
|
||||
const content = <></>;
|
||||
|
||||
const buttons = <></>;
|
||||
|
||||
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
||||
}
|
||||
export default UserEditTimeReportPage;
|
10
frontend/src/Pages/UserPages/UserNewTimeReportPage.tsx
Normal file
10
frontend/src/Pages/UserPages/UserNewTimeReportPage.tsx
Normal file
|
@ -0,0 +1,10 @@
|
|||
import BasicWindow from "../../Components/BasicWindow";
|
||||
|
||||
function UserNewTimeReportPage(): JSX.Element {
|
||||
const content = <></>;
|
||||
|
||||
const buttons = <></>;
|
||||
|
||||
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
||||
}
|
||||
export default UserNewTimeReportPage;
|
10
frontend/src/Pages/UserPages/UserViewTimeReportsPage.tsx
Normal file
10
frontend/src/Pages/UserPages/UserViewTimeReportsPage.tsx
Normal file
|
@ -0,0 +1,10 @@
|
|||
import BasicWindow from "../../Components/BasicWindow";
|
||||
|
||||
function UserViewTimeReportsPage(): JSX.Element {
|
||||
const content = <></>;
|
||||
|
||||
const buttons = <></>;
|
||||
|
||||
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
||||
}
|
||||
export default UserViewTimeReportsPage;
|
Loading…
Reference in a new issue