import React from 'react'; export default class extends React.Component { constructor(props) { super(props); } static displayName = 'NotFound' static propTypes = {} componentDidMount() { } render() { return null; } }