13 lines
200 B
JavaScript
13 lines
200 B
JavaScript
|
|
import React from 'react'
|
||
|
|
|
||
|
|
export default class NotFound extends React.Component {
|
||
|
|
render() {
|
||
|
|
return (
|
||
|
|
<div>
|
||
|
|
<h1>404</h1>
|
||
|
|
<h3>Page not found</h3>
|
||
|
|
</div>
|
||
|
|
);
|
||
|
|
}
|
||
|
|
}
|