feat: add src/app/admin/gallery/page.tsx

This commit is contained in:
cupadev-admin 2026-03-09 07:23:05 +00:00
parent 7c1841c5d7
commit 87ac9c535c
1 changed files with 11 additions and 0 deletions

View File

@ -0,0 +1,11 @@
'use client'
import AdminWrapper from '@/components/admin/AdminWrapper'
import GalleryManager from '@/components/admin/GalleryManager'
export default function AdminGalleryPage() {
return (
<AdminWrapper>
<GalleryManager />
</AdminWrapper>
)
}