route with parameter react not working not found

Solutions on MaxInterview for route with parameter react not working not found by the best coders in the world

showing results for - "route with parameter react not working not found"
Matthew
28 Jul 2019
1<div>
2    <Router history={browserHistory}>
3        <Route path="/" component={NewCustomerContainer} />
4        <Route path="/newCustomer" component={NewCustomerContainer} />
5        <Route path="/search" component={SearchPageContainer} />
6        <Route path="/network" component={NetworkMetaContainer}>
7            <Route path="/:id" component={NetworkContainer}/>
8        </Route>
9    </Router>
10</div>
11