sourcebot/packages/web/src/app/not-found.tsx

7 lines
141 B
TypeScript
Raw Normal View History

2025-01-07 18:27:42 +00:00
import { PageNotFound } from "./components/pageNotFound";
export default function NotFound() {
return (
<PageNotFound />
)
}