November 2018
Beginner
502 pages
10h 22m
English
<Route path="/customers" component={CustomersPage} />
Will the CustomersPage component render when the page is "/customers"? Yes
We can use the exact attribute:
<Route exact={true} path="/customers" component={CustomersPage} />
<Route exact={true} path="/customers/:customerId" component={CustomerPage} ...Read now
Unlock full access