mirror of
https://github.com/sourcebot-dev/sourcebot.git
synced 2025-12-17 06:45:25 +00:00
9 lines
200 B
TypeScript
9 lines
200 B
TypeScript
import { NotFound } from "./notFound"
|
|||
|
|||
export const PageNotFound = () => {
|
|||
return (
|
|||
<div className="flex h-screen">
|
|||
<NotFound message="Page not found" />
|
|||
</div>
|
|||
)
|
|||
}
|