Skip to content

Instantly share code, notes, and snippets.

@hieptl
Created November 13, 2021 15:54
Show Gist options
  • Save hieptl/68210cb173d1cdb06632ea82fc92b79e to your computer and use it in GitHub Desktop.
Save hieptl/68210cb173d1cdb06632ea82fc92b79e to your computer and use it in GitHub Desktop.
NotFound.js - Discord Clone
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