7 lines
234 B
TypeScript
7 lines
234 B
TypeScript
import readme from "../../../README.md?raw";
|
|
import { DocsDocument } from "@/components/docs/DocsDocument";
|
|
|
|
export function DocsReadmePage(): React.JSX.Element {
|
|
return <DocsDocument content={readme} meta="01" title="README" />;
|
|
}
|