mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 12:24:18 +00:00
10 lines
209 B
TypeScript
10 lines
209 B
TypeScript
import { Layout } from 'src/components/common'
|
|
import { ErrorPage } from 'src/components/modules/error-page'
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<ErrorPage/>
|
|
)
|
|
}
|
|
NotFound.Layout = Layout
|