mirror of
https://github.com/Crosstalk-Solutions/project-nomad.git
synced 2026-03-30 21:49:26 +02:00
15 lines
397 B
TypeScript
15 lines
397 B
TypeScript
import { Head } from '@inertiajs/react'
|
|
import MarkdocRenderer from '~/components/MarkdocRenderer'
|
|
import DocsLayout from '~/layouts/DocsLayout'
|
|
|
|
export default function Show({ content }: { content: any; }) {
|
|
return (
|
|
<DocsLayout>
|
|
<Head title={'Documentation'} />
|
|
<div className="xl:pl-80 py-6">
|
|
<MarkdocRenderer content={content} />
|
|
</div>
|
|
</DocsLayout>
|
|
)
|
|
}
|