From ffd2c78b86111a5d1f7914e7dab4ffc946cb5287 Mon Sep 17 00:00:00 2001 From: rohan09-raj Date: Tue, 23 Aug 2022 14:39:22 +0530 Subject: check status feature --- client/src/routes/index.js | 30 ++++++++++++++++++++++++++---- 1 file changed, 26 insertions(+), 4 deletions(-) (limited to 'client/src/routes/index.js') diff --git a/client/src/routes/index.js b/client/src/routes/index.js index ad8b500..70b3adb 100644 --- a/client/src/routes/index.js +++ b/client/src/routes/index.js @@ -12,6 +12,10 @@ import FinalSlip from '../pages/Update/FinalSlip/FinalSlip' import Error from '../pages/Error/Error' import Otp from '../pages/Update/Otp/Otp' import { useTranslation } from 'react-i18next' +import CheckStatus from '../pages/CheckStatus/CheckStatus' +import StatusOtp from '../pages/CheckStatus/StatusOtp' +import EnrollmentStatus from '../pages/CheckStatus/EnrollmentStatus' +import UpdateStatus from '../pages/CheckStatus/UpdateStatus' const Index = () => { const { t } = useTranslation() @@ -21,10 +25,22 @@ const Index = () => { } /> - } - /> + + } + /> + + } + /> + } /> } /> @@ -34,6 +50,12 @@ const Index = () => { } /> } /> + + } /> + } /> + } /> + } /> + ) } -- cgit