Files
dev-connect/client/src/components/layout/NotFound.js
T
2023-05-08 16:59:12 +00:00

15 lines
337 B
JavaScript

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;