feat: add src/app/login/page.tsx

This commit is contained in:
cupadev-admin 2026-03-09 07:23:12 +00:00
parent cdfb526d9e
commit b756e66d5c
1 changed files with 6 additions and 0 deletions

6
src/app/login/page.tsx Normal file
View File

@ -0,0 +1,6 @@
'use client'
import LoginPage from '@/components/admin/LoginPage'
export default function Login() {
return <LoginPage />
}