lordfrontend/src/routes/notfound.js

16 lines
295 B
JavaScript
Raw Normal View History

2020-01-12 17:08:48 +00:00
import React from 'react';
import Navbar from '../Navbar';
2020-01-12 17:08:48 +00:00
class NotFound extends React.Component {
render() {
return (
<>
<Navbar brand="404" />
2020-01-12 17:08:48 +00:00
<div><h1>I MEME 404</h1></div>
</>
);
}
}
export default NotFound;