mirror of
https://github.com/vercel/commerce.git
synced 2025-07-22 12:24:18 +00:00
11 lines
158 B
TypeScript
11 lines
158 B
TypeScript
import { NotFoundPage } from "src/components/modules/404"
|
|
|
|
export default function NotFound() {
|
|
return (
|
|
<div>
|
|
<NotFoundPage/>
|
|
</div>
|
|
)
|
|
}
|
|
|