Create all files for ProjectManagerPages

This commit is contained in:
Davenludd 2024-03-14 10:32:49 +01:00
parent c1aa0769bb
commit a5f15e5c06
7 changed files with 70 additions and 0 deletions

View 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;

View 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;

View 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;

View file

@ -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;

View 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;

View 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;

View file

@ -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;