import type { PostScope } from "../types/post"; import { MessageStream } from "./messageStream/MessageStream"; import { SectionHeader } from "./SectionHeader"; type AssetStreamPageProps = { title: string; scope: PostScope; }; export function AssetStreamPage({ title, scope }: AssetStreamPageProps) { return (
); }