Create all files for ProjectManagerPages
This commit is contained in:
parent
c1aa0769bb
commit
a5f15e5c06
7 changed files with 70 additions and 0 deletions
10
frontend/src/Pages/ProjectManagerPages/PMChangeRole.tsx
Normal file
10
frontend/src/Pages/ProjectManagerPages/PMChangeRole.tsx
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
import BasicWindow from "../../Components/BasicWindow";
|
||||||
|
|
||||||
|
function ChangeRole(): JSX.Element {
|
||||||
|
const content = <></>;
|
||||||
|
|
||||||
|
const buttons = <></>;
|
||||||
|
|
||||||
|
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
||||||
|
}
|
||||||
|
export default ChangeRole;
|
10
frontend/src/Pages/ProjectManagerPages/PMOtherUsersTR.tsx
Normal file
10
frontend/src/Pages/ProjectManagerPages/PMOtherUsersTR.tsx
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
import BasicWindow from "../../Components/BasicWindow";
|
||||||
|
|
||||||
|
function PMOtherUsersTR(): JSX.Element {
|
||||||
|
const content = <></>;
|
||||||
|
|
||||||
|
const buttons = <></>;
|
||||||
|
|
||||||
|
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
||||||
|
}
|
||||||
|
export default PMOtherUsersTR;
|
10
frontend/src/Pages/ProjectManagerPages/PMProjectMembers.tsx
Normal file
10
frontend/src/Pages/ProjectManagerPages/PMProjectMembers.tsx
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
import BasicWindow from "../../Components/BasicWindow";
|
||||||
|
|
||||||
|
function PMProjectMembers(): JSX.Element {
|
||||||
|
const content = <></>;
|
||||||
|
|
||||||
|
const buttons = <></>;
|
||||||
|
|
||||||
|
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
||||||
|
}
|
||||||
|
export default PMProjectMembers;
|
|
@ -0,0 +1,10 @@
|
||||||
|
import BasicWindow from "../../Components/BasicWindow";
|
||||||
|
|
||||||
|
function PMTotalTimeActivity(): JSX.Element {
|
||||||
|
const content = <></>;
|
||||||
|
|
||||||
|
const buttons = <></>;
|
||||||
|
|
||||||
|
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
||||||
|
}
|
||||||
|
export default PMTotalTimeActivity;
|
10
frontend/src/Pages/ProjectManagerPages/PMTotalTimeRole.tsx
Normal file
10
frontend/src/Pages/ProjectManagerPages/PMTotalTimeRole.tsx
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
import BasicWindow from "../../Components/BasicWindow";
|
||||||
|
|
||||||
|
function PMTotalTimeRole(): JSX.Element {
|
||||||
|
const content = <></>;
|
||||||
|
|
||||||
|
const buttons = <></>;
|
||||||
|
|
||||||
|
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
||||||
|
}
|
||||||
|
export default PMTotalTimeRole;
|
10
frontend/src/Pages/ProjectManagerPages/PMUnsignedReports.tsx
Normal file
10
frontend/src/Pages/ProjectManagerPages/PMUnsignedReports.tsx
Normal file
|
@ -0,0 +1,10 @@
|
||||||
|
import BasicWindow from "../../Components/BasicWindow";
|
||||||
|
|
||||||
|
function PMUnsignedReports(): JSX.Element {
|
||||||
|
const content = <></>;
|
||||||
|
|
||||||
|
const buttons = <></>;
|
||||||
|
|
||||||
|
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
||||||
|
}
|
||||||
|
export default PMUnsignedReports;
|
|
@ -0,0 +1,10 @@
|
||||||
|
import BasicWindow from "../../Components/BasicWindow";
|
||||||
|
|
||||||
|
function PMViewUnsignedReport(): JSX.Element {
|
||||||
|
const content = <></>;
|
||||||
|
|
||||||
|
const buttons = <></>;
|
||||||
|
|
||||||
|
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
||||||
|
}
|
||||||
|
export default PMViewUnsignedReport;
|
Loading…
Add table
Reference in a new issue