time / activity link
This commit is contained in:
parent
8164ba9040
commit
9aa5087871
1 changed files with 9 additions and 6 deletions
|
@ -1,18 +1,21 @@
|
||||||
import BasicWindow from "../../Components/BasicWindow";
|
import BasicWindow from "../../Components/BasicWindow";
|
||||||
import Button from "../../Components/Button";
|
import Button from "../../Components/Button";
|
||||||
import BackButton from "../../Components/BackButton";
|
import BackButton from "../../Components/BackButton";
|
||||||
|
import { Link } from "react-router-dom";
|
||||||
|
|
||||||
function PMProjectMembers(): JSX.Element {
|
function PMProjectMembers(): JSX.Element {
|
||||||
const content = <></>;
|
const content = <></>;
|
||||||
|
|
||||||
const buttons = (
|
const buttons = (
|
||||||
<>
|
<>
|
||||||
<Button
|
<Link to="/PM-time-activity">
|
||||||
text="Time / Activity"
|
<Button
|
||||||
onClick={(): void => {
|
text="Time / Activity"
|
||||||
return;
|
onClick={(): void => {
|
||||||
}}
|
return;
|
||||||
/>
|
}}
|
||||||
|
/>
|
||||||
|
</Link>
|
||||||
<Button
|
<Button
|
||||||
text="Time / Role"
|
text="Time / Role"
|
||||||
onClick={(): void => {
|
onClick={(): void => {
|
||||||
|
|
Loading…
Reference in a new issue