()
| 2 | import {Markdown, usePageNode} from 'tinydocs'; |
| 3 | |
| 4 | export const MarkdownPage: NoPropComponent = (): any => { |
| 5 | const {summary, body} = usePageNode(); |
| 6 | const markdown = summary + '\n\n' + body; |
| 7 | |
| 8 | return <Markdown markdown={markdown} html={true} skipCode={true} />; |
| 9 | }; |
nothing calls this directly
no outgoing calls
no test coverage detected
searching dependent graphs…