-
Notifications
You must be signed in to change notification settings - Fork 66
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #339 from bavichugo/victor/updating-AlgoScreen-to-…
…functional-component Updating AlgoScreen from class component to functional component
- Loading branch information
Showing
3 changed files
with
188 additions
and
197 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,24 @@ | ||
import Footer from './Footer'; | ||
import Header from './Header'; | ||
import { Link } from 'react-router-dom'; | ||
import React from 'react'; | ||
|
||
const AlgorithmNotFound404 = () => { | ||
return ( | ||
<div className="container"> | ||
<Header /> | ||
<div className="content"> | ||
<div className="four-o-four"> | ||
<h1>404!</h1> | ||
<h3> | ||
Algorithm not found! Click <Link to="/">here</Link> to return to the home | ||
screen and choose another algorithm. | ||
</h3> | ||
</div> | ||
</div> | ||
<Footer /> | ||
</div> | ||
); | ||
}; | ||
|
||
export default AlgorithmNotFound404; |
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
Oops, something went wrong.