** In react-router v6 I am passing element so in typescript its asking for props how i can solve that**
<Route path="dashboard" element={<Dashboard />} />
<Route path="fellows" element={<AllFellow />} />
<Route path="schools" element={<AllSchool />} />
<Route path="pgestudents" element={<PgeStudents />} />
<Route path="ecestudents" element={<EceStudents />} />
<Route path="fellow/:fellowid" element={<IndividualFellow />} />
</Routes>```
**Type '{}' is missing the following properties from type 'Props':**