Files
dev-connect/client/src/components/layout/NotFound.tsx
T
2024-09-28 23:56:37 +03:00

15 lines
337 B
TypeScript
Executable File

import React from "react";
const NotFound = () => {
return (
<section className="container">
<h1 className="x-large text-primary">
<i className="fas fa-exclamation-triangle" /> Page Not Found
</h1>
<p className="large">Sorry, this page does not exist</p>
</section>
);
};
export default NotFound;