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

9 lines
147 B
TypeScript
Raw Normal View History

2024-04-26 06:44:12 +00:00
import Login from '@/components/form/login'
import React from 'react'
export default function AuthPage() {
return (
<Login />
)
}