import React, {Component} from 'react'; export default class NotFound extends Component { render() { return ( <div> Oops! page not found!! </div> ); } }