From ad69590e648cb9efb7596269bcbcca738ca11f71 Mon Sep 17 00:00:00 2001 From: Mathias Wagner Date: Sun, 30 Jul 2023 19:06:49 +0200 Subject: [PATCH] Created the Login.jsx --- src/states/Login/Login.jsx | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 src/states/Login/Login.jsx 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