mirror of
https://github.com/vercel/commerce.git
synced 2025-07-21 11:51:20 +00:00
12 lines
222 B
TypeScript
12 lines
222 B
TypeScript
import { Layout } from "src/components/common"
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div>
|
|
The requested page doesn't exist or you don't have access to it.
|
|
</div>
|
|
)
|
|
}
|
|
|
|
NotFound.Layout = Layout
|