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

13 lines
200 B
JavaScript
Raw Normal View History

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