2026-05-28 22:36:08 +08:00
|
|
|
import type { PostScope } from "../types/post";
|
|
|
|
|
import { MessageStream } from "./messageStream/MessageStream";
|
|
|
|
|
|
|
|
|
|
type AssetStreamPageProps = {
|
|
|
|
|
title: string;
|
|
|
|
|
scope: PostScope;
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export function AssetStreamPage({ title, scope }: AssetStreamPageProps) {
|
|
|
|
|
return (
|
|
|
|
|
<section>
|
2026-05-30 01:31:10 +08:00
|
|
|
<MessageStream scope={scope} title={title} />
|
2026-05-28 22:36:08 +08:00
|
|
|
</section>
|
|
|
|
|
);
|
|
|
|
|
}
|