I have two routes like below
            <Route path='/dashboard/home' exact component={Charts} />
            <Route path='/dashboard/map-view' component={Mapview} />
If user is navigating to just '/dashboard' also I need to show '/dashboard/home' route. Whenever I click home also I need to show same. How can I make it
 
    