commerce/pages/404.tsx
2021-09-07 14:25:10 +07:00

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