feat: add src/app/admin/pages/[id]/page.tsx

This commit is contained in:
cupadev-admin 2026-03-09 07:23:08 +00:00
parent 96b45385a8
commit f9c2b113a9
1 changed files with 13 additions and 0 deletions

View File

@ -0,0 +1,13 @@
'use client'
import { useParams } from 'next/navigation'
import AdminWrapper from '@/components/admin/AdminWrapper'
import PageEditor from '@/components/admin/PageEditor'
export default function EditPagePage() {
const params = useParams()
return (
<AdminWrapper>
<PageEditor pageId={params.id as string} />
</AdminWrapper>
)
}