commerce/pages/404.tsx
2021-09-06 09:10:02 +07:00

11 lines
218 B
TypeScript

import { Layout } from '@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