mirror of
https://github.com/tomru/pfadi-bussle.git
synced 2026-03-03 14:37:13 +01:00
4 lines
178 B
TypeScript
4 lines
178 B
TypeScript
export default function Mdx({ children }: { children: React.ReactNode }) {
|
|
// Create any shared layout or styles here
|
|
return <div className="markdown-body">{children}</div>
|
|
} |