mirror of
https://github.com/wgh136/nysoure.git
synced 2025-09-28 20:47:23 +00:00
10 lines
212 B
TypeScript
10 lines
212 B
TypeScript
import Markdown from "react-markdown";
|
|
import {app} from "../app.ts";
|
|
|
|
export default function AboutPage() {
|
|
return <article className={"p-4"}>
|
|
<Markdown>
|
|
{app.siteInfo}
|
|
</Markdown>
|
|
</article>
|
|
} |