Page Not Found
~10 mins
- nextjs
Create Page Not Found page
- Create File -
not-found.tsx
import React from "react";
const NotFound = () => {
return (
<div>
Page Not Found
</div>
);
};
export default NotFound;
Test a invalid url
Note: It should display page not found page.