Skip to content

Commit

Permalink
added error popup and loading screen
Browse files Browse the repository at this point in the history
  • Loading branch information
Anirudha619 committed Apr 30, 2022
1 parent 2426086 commit 24234c9
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions frontend/src/Routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ import Welcome from "./customer/onboarding/Welcome";
import Docs from "./customer/onboarding/Docs";
import PanOption from "./customer/onboarding/PanOption";
import PanProof from "./customer/onboarding/PanProof";
import PanUpload from './customer/onboarding/panProofComponents/PanUpload'
import BusinessProof from "./customer/onboarding/BusinessProof";
import BusinessOption from "./customer/onboarding/BusinessOption";

const Routes = () => {
return (
Expand All @@ -45,11 +48,12 @@ const Routes = () => {
<Route exact path="/dashboard" component={Dashboard} />
<Route exact path="/disbursement" component={Disbursement} />
<Route exact path="/sale" component={PanProof} />
<Route exact path="/Mobile" component={Mobile} />
<Route exact path="/pan" component={PanUpload} />
<Route exact path="/mobile" component={Mobile} />
<Route exact path="/VerifyNumber" component={VerifyNumber} />
</Switch>
</BrowserRouter>
);
};

export default Routes;
export default Routes;

0 comments on commit 24234c9

Please sign in to comment.