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