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

This commit is contained in:
cupadev-admin 2026-03-09 07:23:01 +00:00
parent 1b85ff55bf
commit b162beb6af
1 changed files with 11 additions and 0 deletions

View File

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