diff --git a/src/App.tsx b/src/App.tsx index 865f952..00ba736 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,33 +1,35 @@ -import { Redirect, Route, Switch } from 'react-router-dom'; +import { Switch } from 'react-router-dom'; +import { ProtectedRoute, AuthRoute } from './components'; import { AdditionalInfo, ForgotPassword, Login, RecoverAccount, Signup, + Main, } from './pages'; const App = () => { return ( - - - - + +
+ + - - + + - - + + - - + + - - + + - + ); };