1 2 3 4 5 6 7 8 9 10 11export default function Custom404() { return ( <div> <h1 data-testid="error-title">404 - Page Not Found</h1> <p data-testid="error-message"> Sorry, the page you are looking for does not exist. </p> </div> ); }
1 2 3 4 5 6 7 8 9 10 11
export default function Custom404() { return ( <div> <h1 data-testid="error-title">404 - Page Not Found</h1> <p data-testid="error-message"> Sorry, the page you are looking for does not exist. </p> </div> ); }