Merge branch 'BumBranch' into frontend

This commit is contained in:
al8763be 2024-03-17 15:10:19 +01:00
commit 179a5196e9
8 changed files with 449 additions and 127 deletions

View file

@ -1,18 +1,16 @@
import BasicWindow from "../../Components/BasicWindow";
import Button from "../../Components/Button";
import Register from "../../Components/Register";
function AdminAddUser(): JSX.Element {
const content = <></>;
const content = (
<>
<Register />
</>
);
const buttons = (
<>
<Button
text="Finish"
onClick={(): void => {
return;
}}
type="button"
/>
<Button
text="Back"
onClick={(): void => {

View file

@ -13,14 +13,15 @@ function UserNewTimeReportPage(): JSX.Element {
const buttons = (
<>
<Button
text="Submit"
onClick={(): void => {
return;
}}
type="button"
/>
<BackButton />
<Link to="/project">
<Button
text="Back"
onClick={(): void => {
return;
}}
type="button"
/>
</Link>
</>
);