import React, { Component } from 'react'; import { Redirect, Switch } from 'react-router'; import { PROJECT_PATH } from './constants/Env'; import * as Authentication from './authentication/Authentication'; import AuthenticationWrapper from './authentication/AuthenticationWrapper'; import AuthenticatedRoute from './authentication/AuthenticatedRoute'; import UnauthenticatedRoute from './authentication/UnauthenticatedRoute'; import SignInPage from './containers/SignInPage'; import WiFiConnection from './sections/WiFiConnection'; import AccessPoint from './sections/AccessPoint'; import NetworkTime from './sections/NetworkTime'; import Security from './sections/Security'; import System from './sections/System'; import ProjectRouting from './project/ProjectRouting'; class AppRouting extends Component { componentWillMount() { Authentication.clearLoginRedirect(); } render() { return ( ) } } export default AppRouting;