How does the two path differ . I tried going through the docs of react router but it still creates confusion . First one is
   <Route
    path="/cricket/:description/:id"
    component={xyz}
  />
 and another is 
  <Route 
   exact
   path="/cricket"
   component={xyz1}
 />
I see that the first Route is mentioned in App.js .It leads to confusion as which one got executed and how ?
 
    