【发布时间】:2021-11-05 16:41:04
【问题描述】:
** 在 react-router v6 中,我正在传递元素,所以在打字稿中它要求道具我如何解决这个问题**
<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':**
【问题讨论】:
-
请提供足够的代码,以便其他人更好地理解或重现问题。
标签: reactjs react-router react-router-dom