import React, { Component } from 'react'; import { Redirect, Switch } from 'react-router'; import { PROJECT_PATH } from '../constants/Env'; import AuthenticatedRoute from '../authentication/AuthenticatedRoute'; import DemoProject from './DemoProject'; class ProjectRouting extends Component { render() { return ( { /* * Add your project page routing below. */ } { /* * 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;