13 lines
227 B
TypeScript
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;
|