Why is this react route throwing an error of no route matched location?
I have some problem related to routing in my code im getting error "react_devtools_backend.js:4026 No routes matched location "/airlines/1/reviews/new" .That is when im trying to give a review to a particular airline. here is my code I have App.js-Airlines.js-AirlineCard.js-Reviews.js-AddReviewForm App.js.My route is defined here const[reviews,setReviews]=useState([]); . . . <Routes> <Route exact path="/airlines" element={<><Search search={search} onSearchChange={setSearch}… Read More Why is this react route throwing an error of no route matched location?