github.com/argoproj/argo-cd@v1.8.7/ui/src/app/user-info/components/user-info-container.tsx (about) 1 import * as React from 'react'; 2 import {Route, RouteComponentProps, Switch} from 'react-router'; 3 4 import {UserInfoOverview} from './user-info-overview/user-info-overview'; 5 6 export const UserInfoContainer = (props: RouteComponentProps<any>) => ( 7 <Switch> 8 <Route exact={true} path={`${props.match.path}`} component={UserInfoOverview} /> 9 </Switch> 10 );