8 lines
123 B
TypeScript
8 lines
123 B
TypeScript
const NotFoundPage = () => (
|
|
<div className="w-full h-full">
|
|
<p>404 Page</p>
|
|
</div>
|
|
)
|
|
|
|
export default NotFoundPage
|