commerce/pages/404.tsx
2021-09-10 18:00:29 +07:00

12 lines
229 B
TypeScript

import { Layout } from 'src/components/common'
import { NotFoundPage } from "src/components/modules/404"
export default function NotFound() {
return (
<div>
<NotFoundPage/>
</div>
)
}
NotFound.Layout = Layout