From fffde7b96ec6472791ad876252050f88f1d482d7 Mon Sep 17 00:00:00 2001 From: Hazem Krimi Date: Fri, 23 Apr 2021 18:26:14 +0100 Subject: [PATCH] Add auth pages routing --- src/App.tsx | 26 ++++++++++++++++++++++++-- 1 file changed, 24 insertions(+), 2 deletions(-) diff --git a/src/App.tsx b/src/App.tsx index 581006e..865f952 100644 --- a/src/App.tsx +++ b/src/App.tsx @@ -1,10 +1,32 @@ -import { Route, Switch } from 'react-router-dom'; +import { Redirect, Route, Switch } from 'react-router-dom'; +import { + AdditionalInfo, + ForgotPassword, + Login, + RecoverAccount, + Signup, +} from './pages'; const App = () => { return ( -
+ + + + + + + + + + + + + + + + );