12 lines
217 B
TypeScript
12 lines
217 B
TypeScript
|
|
import LoginForm from "@/components/auth/LoginForm";
|
||
|
|
|
||
|
|
const Login = () => {
|
||
|
|
return (
|
||
|
|
<div className="login h-full flex items-center justify-center">
|
||
|
|
<LoginForm />
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
};
|
||
|
|
|
||
|
|
export default Login;
|