diff --git a/services/frontend/src/components/modals/new-project/index.tsx b/services/frontend/src/components/modals/new-project/index.tsx new file mode 100644 index 0000000..751eac8 --- /dev/null +++ b/services/frontend/src/components/modals/new-project/index.tsx @@ -0,0 +1,72 @@ +import { styled } from "@mui/joy"; +import { XIcon } from "@heroicons/react/outline"; +import { CallbackFunction } from "../../../types"; +import { useNavigate } from "react-router-dom"; + +interface IModalNewProjectProps { + onHide: CallbackFunction; +} + +const FormContainer = styled("div")` + display: flex; + flex-direction: column; + gap: 12px; + padding: 20px; +`; + +const ModalNewProject = (props: IModalNewProjectProps) => { + const { onHide } = props; + const navigate = useNavigate(); + + return ( +
+
+
+
+
+
+

Project type

+ +
+ + + + + + +
+
+
+
+ ); +}; + +export default ModalNewProject;