commerce/app/(site)/[locale]/not-found.tsx
2023-08-14 12:06:46 +02:00

8 lines
141 B
TypeScript

export default function NotFound() {
return (
<>
<h2>Not Found</h2>
<p>Could not find requested resource</p>
</>
);
}