import React, {Component} from 'react'; import {Link} from 'react-router'; import './notfound.less'; export class NotFound extends Component { render() { return (

Oops!

404 Not Found

Sorry, an error has occured, Requested page not found!
Take me to the dashboard
); } } NotFound.displayName = 'NotFound';