15 lines
337 B
TypeScript
Executable File
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;
|