import React, { Component } from 'react'; import { Redirect, Switch } from 'react-router'; import * as Authentication from './authentication/Authentication'; import AuthenticationWrapper from './authentication/AuthenticationWrapper'; import AuthenticatedRoute from './authentication/AuthenticatedRoute'; import UnauthenticatedRoute from './authentication/UnauthenticatedRoute'; import OTAConfiguration from './containers/OTAConfiguration'; 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'; class AppRouting extends Component { componentWillMount() { Authentication.clearLoginRedirect(); } render() { return ( ) } } export default AppRouting;