import React, { FC } from 'react' import { Route, Routes, Navigate } from 'react-router-dom' import { Paths } from './Paths' import { HomeLayout } from './HomeLayout' import { Home } from 'pages/activation/home' import { Login } from 'pages/activation/login' import { Activate } from 'pages/activation/activate' import { Dashboard } from 'pages/customerPortal/dashboard' import { History } from 'pages/customerPortal/history' import { RequireAuth } from './RequireAuth' export const AppRoutes: FC = () => { return ( }> } /> } /> } /> }> } /> } /> } /> ) }