12 lines
301 B
TypeScript
12 lines
301 B
TypeScript
import { LiveBlogManager } from '@/components/admin/live-blog/LiveBlogManager'
|
|
|
|
export function LiveBlogAdminComponent({ slug }: { slug: string }) {
|
|
return (
|
|
<div className="py-8">
|
|
<LiveBlogManager
|
|
slug={slug}
|
|
onBack={() => window.history.back()}
|
|
/>
|
|
</div>
|
|
)
|
|
} |