buster/apps/web/src/app/test/report-playground/2/page.tsx

12 lines
287 B
TypeScript

'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>
);
}