added change username button
This commit is contained in:
parent
d2a8399bde
commit
c072aff9da
3 changed files with 11 additions and 1 deletions
0
frontend/src/Components/AdminUserList.tsx
Normal file
0
frontend/src/Components/AdminUserList.tsx
Normal file
|
@ -1,3 +1,4 @@
|
|||
import { Link } from "react-router-dom";
|
||||
import Button from "./Button";
|
||||
import DeleteUser from "./DeleteUser";
|
||||
import UserProjectListAdmin from "./UserProjectListAdmin";
|
||||
|
@ -30,6 +31,15 @@ function UserInfoModal(props: {
|
|||
}}
|
||||
type="button"
|
||||
/>
|
||||
<Link to="/AdminChangeUserName">
|
||||
<Button
|
||||
text="Change Username"
|
||||
onClick={(): void => {
|
||||
return;
|
||||
}}
|
||||
type="button"
|
||||
/>
|
||||
</Link>
|
||||
<Button
|
||||
text={"Close"}
|
||||
onClick={function (): void {
|
||||
|
|
|
@ -6,7 +6,7 @@ import UserProjectListAdmin from "../../Components/UserProjectListAdmin";
|
|||
function AdminViewUserInfo(): JSX.Element {
|
||||
const content = (
|
||||
<>
|
||||
<UserProjectListAdmin username={""} />
|
||||
<UserProjectListAdmin />
|
||||
</>
|
||||
);
|
||||
|
||||
|
|
Loading…
Reference in a new issue