|
'use client';
|
|
|
|
import { StreamingContentExample } from '@/components/ui/report/StreamingContentExample';
|
|
|
|
export default function StreamingContentPage() {
|
|
return (
|
|
<div className="bg-background h-full w-full rounded border p-5">
|
|
<StreamingContentExample />
|
|
</div>
|
|
);
|
|
}
|