Does useEffect in Reactjs fetch data based on URL changes?
I am using two URLs: localhost:3000/content localhost:300/content/<projectId>. My routes are: <Route path="/content" element={ <RequireAuth> <ContentPage /> </RequireAuth> } /> <Route path="/content/:projectId" element={ <RequireAuth> <ProjectPage /> </RequireAuth> } /> When I am going sequentially, its working perfectly. But when I am…