deerflow2/frontend/src/components/workspace/settings/about-settings-page.tsx

10 lines
198 B
TypeScript

"use client";
import { Streamdown } from "streamdown";
import { aboutMarkdown } from "./about-content";
export function AboutSettingsPage() {
return <Streamdown>{aboutMarkdown}</Streamdown>;
}