import React from 'react'; import agui from 'arm-gui'; class NotFound extends React.Component { constructor(props) { super(props); } render() { let url = this.props.history.location.pathname; console.log("[NotFoundPage - new React]PAGE NOT FOUND WITH URL:", url, this.context.router); return ( {/*

Page not found

The requested URL {'#'}{url} was not found.

Please check misspelling and try again.

 

 

 

 

*/}
); } } export default NotFound;