import React, { useEffect } from 'react'; import ReactGA from 'react-ga'; import { Route, RouteComponentProps, Switch } from 'react-router-dom'; import LoginContainer from '@/components/auth/LoginContainer'; import ForgotPasswordContainer from '@/components/auth/ForgotPasswordContainer'; import ResetPasswordContainer from '@/components/auth/ResetPasswordContainer'; import LoginCheckpointContainer from '@/components/auth/LoginCheckpointContainer'; import NotFound from '@/components/screens/NotFound'; export default ({ location, history, match }: RouteComponentProps) => { useEffect(() => { ReactGA.pageview(location.pathname); }, [ location.pathname ]); return (
history.push('/auth/login')} />
); };