fiix: move not-found into route groups

This commit is contained in:
Christel Westerberg
2024-02-08 11:54:17 +01:00
parent dd8a88e47d
commit c0b7f57c8a
3 changed files with 22 additions and 12 deletions

View File

@@ -0,0 +1,8 @@
export default function NotFound() {
return (
<main>
<h2>Not Found</h2>
<p>Could not find requested resource</p>
</main>
)
}