5 lines
209 B
TypeScript
5 lines
209 B
TypeScript
import { LiveBlogViewer } from '@/components/features/live-blog/LiveBlogViewer'
|
|
|
|
export function LiveBlogDetailComponent({ slug }: { slug: string }) {
|
|
return <LiveBlogViewer slug={slug} className="py-8" />
|
|
} |