diff options
author | rohan09-raj <[email protected]> | 2022-08-18 16:12:35 +0530 |
---|---|---|
committer | rohan09-raj <[email protected]> | 2022-08-18 16:12:35 +0530 |
commit | 0a1a985de6e9a53896d2ba17e26d042009b3e1b4 (patch) | |
tree | 133d50eb69452171868b38988c6a10c9367ce171 /client/src/routes/index.js | |
parent | 6b85ebee8986b982e05d49c8f1a326deb3e08bae (diff) |
Condtional update handling
Diffstat (limited to 'client/src/routes/index.js')
-rw-r--r-- | client/src/routes/index.js | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/client/src/routes/index.js b/client/src/routes/index.js index 41beeca..6bc2342 100644 --- a/client/src/routes/index.js +++ b/client/src/routes/index.js @@ -9,6 +9,7 @@ import UpdateSelect from '../pages/Update/UpdateSelect/UpdateSelect' import Biometric from '../pages/Update/Biometric/Biometric' import Agreement from '../pages/Update/Agreement/Agreement' import FinalSlip from '../pages/Update/FinalSlip/FinalSlip' +import Otp from '../pages/Update/Otp/Otp' const Index = () => { return ( @@ -19,6 +20,7 @@ const Index = () => { </Route> <Route path="update"> <Route index element={<Update />} /> + <Route path="otp" element={<Otp />} /> <Route path="select-update" element={<UpdateSelect />} /> <Route path="demographic" element={<Demographic />} /> <Route path="biometric" element={<Biometric />} /> |