DockerRegistryWebUI/src/components/NotFound.tsx
2022-04-11 11:05:36 +01:00

9 lines
142 B
TypeScript

import React from "react";
const NotFound: React.FC = () => {
return(
<h1>404 Not Found!</h1>
);
};
export default NotFound;