import React, { Component } from 'react'; class NotFound extends Component { render() { return (

404 Not Found

); }; } export default NotFound;