2024-03-14 10:32:49 +01:00
|
|
|
import BasicWindow from "../../Components/BasicWindow";
|
2024-03-14 10:49:15 +01:00
|
|
|
import Button from "../../Components/Button";
|
2024-03-16 17:50:15 +01:00
|
|
|
import BackButton from "../../Components/BackButton";
|
2024-03-16 17:54:34 +01:00
|
|
|
import { Link } from "react-router-dom";
|
2024-03-14 10:32:49 +01:00
|
|
|
|
|
|
|
function PMProjectMembers(): JSX.Element {
|
|
|
|
const content = <></>;
|
|
|
|
|
2024-03-14 10:49:15 +01:00
|
|
|
const buttons = (
|
|
|
|
<>
|
2024-03-16 17:54:34 +01:00
|
|
|
<Link to="/PM-time-activity">
|
|
|
|
<Button
|
|
|
|
text="Time / Activity"
|
|
|
|
onClick={(): void => {
|
|
|
|
return;
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</Link>
|
2024-03-16 17:56:59 +01:00
|
|
|
<Link to="/PM-time-role">
|
|
|
|
<Button
|
|
|
|
text="Time / Role"
|
|
|
|
onClick={(): void => {
|
|
|
|
return;
|
|
|
|
}}
|
|
|
|
/>
|
|
|
|
</Link>
|
2024-03-16 17:50:15 +01:00
|
|
|
<BackButton />
|
2024-03-14 10:49:15 +01:00
|
|
|
</>
|
|
|
|
);
|
2024-03-14 10:32:49 +01:00
|
|
|
|
|
|
|
return <BasicWindow username="Admin" content={content} buttons={buttons} />;
|
|
|
|
}
|
|
|
|
export default PMProjectMembers;
|