import { Component } from 'react'; import { Redirect, Switch } from 'react-router'; import { AuthenticatedRoute } from '../authentication'; import EMSESPDashboard from './EMSESPDashboard'; import EMSESPSettings from './EMSESPSettings'; class ProjectRouting extends Component { render() { return ( {/* * The redirect below caters for the default project route and redirecting invalid paths. * The "to" property must match one of the routes above for this to work correctly. */} ); } } export default ProjectRouting;