[ ADD ] react configuration

This commit is contained in:
Kuroi488
2020-11-16 17:14:34 +01:00
parent 89c9cfe099
commit 5078a1a96e
71 changed files with 16891 additions and 0 deletions

View File

@ -0,0 +1,12 @@
import React from "react";
const NotFound = () => {
return (
<React.Fragment>
<div className="text-center">
<h1 className="my-5 pt-5">Sorry we cant find this page</h1>
</div>
</React.Fragment>
);
};
export default NotFound;