2
0
Files
cal/calcom/apps/web/app/not-found.tsx
2024-08-09 00:39:27 +02:00

13 lines
227 B
TypeScript

import React from "react";
const NotFound = () => {
return (
<div data-testid="404-page">
<h1>404 - Page Not Found</h1>
<p>Hmmm.. Diese Seite existiert nicht.</p>
</div>
);
};
export default NotFound;