Files
test-product-compare-react/src/containers/NotFound/index.js

15 lines
238 B
JavaScript
Raw Normal View History

import React, {Component} from 'react'
2017-07-24 18:40:56 +01:00
class NotFound extends Component {
2017-07-24 18:40:56 +01:00
render() {
return (
<div className="not-found">
2017-07-24 18:40:56 +01:00
<h1>404</h1>
<h3>Page not found</h3>
</div>
)
2017-07-24 18:40:56 +01:00
}
}
export default NotFound