mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-12 04:15:30 +00:00
9 lines
No EOL
200 B
TypeScript
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>
|
|
)
|
|
} |