Created
November 13, 2021 15:54
-
-
Save hieptl/68210cb173d1cdb06632ea82fc92b79e to your computer and use it in GitHub Desktop.
NotFound.js - Discord Clone
This file contains hidden or 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
import notFound from '../../images/404.png'; | |
const NotFound = () => { | |
return ( | |
<div className="not-found"> | |
<img src={notFound} alt="404"/> | |
<p>No one's around to play with Wumpus.</p> | |
</div> | |
); | |
}; | |
export default NotFound; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment