web-humas-fe/app/auth/page.tsx

6 lines
105 B
TypeScript
Raw Permalink Normal View History

2024-11-22 02:56:34 +00:00
import Login from "@/components/form/login";
2024-04-26 06:44:12 +00:00
export default function AuthPage() {
2025-02-13 10:47:24 +00:00
return <Login />;
2024-04-26 06:44:12 +00:00
}