Files
calendar/apps/web/app/not-found.tsx
T

13 lines
243 B
TypeScript

import React from "react";
const NotFound = () => {
return (
<div data-testid="404-page">
<h1>404 - Page Not Found</h1>
<p>Sorry, the page you are looking for does not exist.</p>
</div>
);
};
export default NotFound;