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