sourcebot/packages/web/src/app/[domain]/components/pageNotFound.tsx
2025-02-12 13:51:44 -08:00

9 lines
No EOL
200 B
TypeScript

import { NotFound } from "./notFound"
export const PageNotFound = () => {
return (
<div className="flex h-screen">
<NotFound message="Page not found" />
</div>
)
}