diff --git a/src/states/Login/Login.jsx b/src/states/Login/Login.jsx new file mode 100644 index 0000000..f455569 --- /dev/null +++ b/src/states/Login/Login.jsx @@ -0,0 +1,22 @@ +import {Stack, Tab, Tabs} from "@mui/material"; +import Logo from "@/states/Login/components/Logo"; +import {useState} from "react"; +import LoginTab from "@/states/Login/tabs/LoginTab"; + +export const Login = () => { + const [currentPage, setCurrentPage] = useState(0); + + return ( + + + + setCurrentPage(v)}> + + + + + {currentPage === 0 && } + {currentPage === 1 &&
Register
} +
+ ) +} \ No newline at end of file