Some fixes to design and comments
This commit is contained in:
parent
cb68a6323b
commit
948dcce1ca
12 changed files with 173 additions and 177 deletions
|
|
@ -1,11 +1,11 @@
|
|||
import { useLocation } from "react-router-dom";
|
||||
import AddUserToProject from "../../Components/AddUserToProject";
|
||||
import BasicWindow from "../../Components/BasicWindow";
|
||||
|
||||
function AdminProjectAddMember(): JSX.Element {
|
||||
const content = <AddUserToProject />;
|
||||
|
||||
const projectName = useLocation().search.slice(1);
|
||||
const content = <AddUserToProject projectName={projectName} />;
|
||||
const buttons = <></>;
|
||||
|
||||
return <BasicWindow content={content} buttons={buttons} />;
|
||||
}
|
||||
export default AdminProjectAddMember;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue