Files
catherine-league/nextjs/src/app/not-found.tsx

8 lines
93 B
TypeScript

export default function NotFound() {
return (
<div>
<p>404</p>
</div>
);
}