MCPcopy Create free account
hub / github.com/BuilderIO/framework-benchmarks / NotFound

Function NotFound

frameworks/solid-start/src/routes/[...404].tsx:4–19  ·  view source on GitHub ↗
()

Source from the content-addressed store, hash-verified

2import { HttpStatusCode } from "solid-start/server";
3
4export 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}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected