Use below code and it will work
<Route path="/report/:id" element={<ReportView key={Math.random()}/>} />
If you are using component
<Route path="/report/:id" component={<ReportView key={Math.random()}/>} />