in Front-End/src/App.js [61:90]
render() {
return (
<BrowserRouter>
<div>
<Navigation />
<Route exact path="/" component={Home} />
<Route path="/allec2" component={AllEC2} />
<Route path="/allLB" component={AllLB} />
<Route path="/allEBS" component={AllEBS} />
<Route path="/alleks" component={AllEKS} />
<Route path="/alllambda" component={AllLambda} />
<Route path="/Table" component={Table} />
<Route path="/allodcr" component={AllODCR} />
<Route path="/organizations" component={Organizations} />
<Route path="/allrds" component={AllRDS} />
<Route path="/allvpcs" component={AllVpcs} />
<Route path="/allnetworkinterfaces" component={AllNetworkInterfaces} />
<Route path="/allsubnets" component={AllSubnets} />
<Route path="/refresh" component={Refresh} />
<Route path="/alldata" component={AllData} />
<Route path="/allusers" component={AllUsers} />
<Route path="/allroles" component={AllRoles} />
<Route path="/allattachedpolicys" component={AllAttachedPolicys} />
<Route path="/allris" component={AllRis} />
<Route path="/alls3" component={AllS3} />
<Route path="/alllightsail" component={AllLightsail} />
</div>
</BrowserRouter>
);
}