commerce/app/[locale]/not-found.tsx
2023-05-03 09:58:35 +02:00

8 lines
141 B
TypeScript

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