()
| 3 | import MarkdownRenderer from "@/components/MarkdownRenderer"; |
| 4 | |
| 5 | const PrivacyPage: NextPage = () => { |
| 6 | return ( |
| 7 | <> |
| 8 | <Head> |
| 9 | <title>Terms</title> |
| 10 | </Head> |
| 11 | |
| 12 | <MarkdownRenderer url="/terms.md" /> |
| 13 | </> |
| 14 | ); |
| 15 | }; |
| 16 | |
| 17 | export default PrivacyPage; |
nothing calls this directly
no outgoing calls
no test coverage detected