generated from hackforla/.github-hackforla-base-repo-template
-
-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'remove_typescript_errors' of https://github.com/hackfor…
…la/HomeUniteUs into remove_typescript_errors
- Loading branch information
Showing
3 changed files
with
36 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,14 @@ | ||
import React from 'react'; | ||
import {Link} from 'react-router-dom'; | ||
|
||
const NotFound = () => { | ||
return ( | ||
<div style={{textAlign: 'center', marginTop: '50px'}}> | ||
<h1>404 - Page Not Found</h1> | ||
<p>Sorry, the page you are looking for does not exist.</p> | ||
<Link to="/">Go Back to Home</Link> | ||
</div> | ||
); | ||
}; | ||
|
||
export default NotFound; |