turkmentv_front/app/(main)/auth/login/page.tsx

12 lines
217 B
TypeScript
Raw Normal View History

2024-08-19 12:44:56 +00:00
import LoginForm from "@/components/auth/LoginForm";
const Login = () => {
return (
<div className="login h-full flex items-center justify-center">
<LoginForm />
</div>
);
};
export default Login;