mirror of
https://github.com/dec0dOS/zero-ui.git
synced 2025-07-06 04:51:44 -07:00
20 lines
403 B
JavaScript
20 lines
403 B
JavaScript
import { Divider } from "@material-ui/core";
|
|
|
|
import LogInUser from "./components/LogInUser/LogInUser.jsx";
|
|
import LogInToken from "./components/LogInToken/LogInToken.jsx";
|
|
|
|
function LogIn() {
|
|
return (
|
|
<>
|
|
{import.meta.env.DEV && (
|
|
<>
|
|
<LogInToken />
|
|
<Divider orientation="vertical" />
|
|
</>
|
|
)}
|
|
<LogInUser />
|
|
</>
|
|
);
|
|
}
|
|
|
|
export default LogIn;
|