'use strict'; import React from 'react'; let ErrorNotFoundPage = React.createClass({ render() { return (

404

Ups, the page you are looking for does not exist.

); } }); export default ErrorNotFoundPage;