import React, { Component } from 'react'; import { Switch, Redirect } from 'react-router'; import * as Authentication from './authentication/Authentication'; import AuthenticationWrapper from './authentication/AuthenticationWrapper'; import UnauthenticatedRoute from './authentication/UnauthenticatedRoute'; import AuthenticatedRoute from './authentication/AuthenticatedRoute'; import SignIn from './SignIn'; import ProjectRouting from './project/ProjectRouting'; import WiFiConnection from './wifi/WiFiConnection'; import AccessPoint from './ap/AccessPoint'; import NetworkTime from './ntp/NetworkTime'; import Security from './security/Security'; import System from './system/System'; import { PROJECT_PATH } from './api'; class AppRouting extends Component { componentDidMount() { Authentication.clearLoginRedirect(); } render() { return ( ) } } export default AppRouting;