feat: add src/app/admin/posts/page.tsx
This commit is contained in:
parent
1b85ff55bf
commit
b162beb6af
|
|
@ -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>
|
||||
)
|
||||
}
|
||||
Loading…
Reference in New Issue