2
0
Files
cal/calcom/apps/web/app/not-found.tsx

13 lines
227 B
TypeScript
Raw Permalink Normal View History

2024-08-09 00:39:27 +02:00
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;