mirror of
https://github.com/vercel/commerce.git
synced 2025-05-08 02:37:58 +00:00
7 lines
156 B
TypeScript
7 lines
156 B
TypeScript
import NotFound from '@/app/not-found'
|
|
import { notFound } from 'next/navigation'
|
|
|
|
export default function CatchAllNotFoundPage() {
|
|
return <NotFound />
|
|
}
|