()
| 2 | import { HttpStatusCode } from "solid-start/server"; |
| 3 | |
| 4 | export default function NotFound() { |
| 5 | return ( |
| 6 | <main> |
| 7 | <Title>Not Found</Title> |
| 8 | <HttpStatusCode code={404} /> |
| 9 | <h1>Page Not Found</h1> |
| 10 | <p> |
| 11 | Visit{" "} |
| 12 | <a href="https://docs.solidjs.com/start" target="_blank"> |
| 13 | docs.solidjs.com/start |
| 14 | </a>{" "} |
| 15 | to learn how to build SolidStart apps. |
| 16 | </p> |
| 17 | </main> |
| 18 | ); |
| 19 | } |
nothing calls this directly
no outgoing calls
no test coverage detected