()
| 3 | import {useReadme} from './Readme.tsx'; |
| 4 | |
| 5 | export const Home: NoPropComponent = (): any => { |
| 6 | const [summary, body] = useReadme(usePageNode()); |
| 7 | |
| 8 | return ( |
| 9 | <article id="home"> |
| 10 | <em> |
| 11 | <img |
| 12 | src="/favicon.svg" |
| 13 | alt="Large TinyBase logo" |
| 14 | width="100%" |
| 15 | height="100%" |
| 16 | /> |
| 17 | </em> |
| 18 | <Markdown markdown={summary} html={true} /> |
| 19 | <Markdown markdown={body} html={true} /> |
| 20 | </article> |
| 21 | ); |
| 22 | }; |
nothing calls this directly
no test coverage detected
searching dependent graphs…