mirror of
https://gitee.com/wanwujie/deer-flow
synced 2026-04-21 05:14:45 +08:00
10 lines
173 B
TypeScript
10 lines
173 B
TypeScript
"use client";
|
|
|
|
import { Streamdown } from "streamdown";
|
|
|
|
import about from "./about.md";
|
|
|
|
export function AboutSettingsPage() {
|
|
return <Streamdown>{about}</Streamdown>;
|
|
}
|