我需要你的帮助,所以是这样的 我收到此错误 错误:固定失败:不应在 不变量 D:/laragon/www/Projects/trello-clone/node_modules/tiny-invariant/dist/tiny-invariant.esm.js:10 (匿名功能( D:/laragon/www/Projects/modules/Switch.js:17
代码 https://gist.github.com/Sivanwol/e16cd1aad2ee63a596afad9715bb2e33
所以我做错了什么
您可以尝试更改 sintax:
React Router 5 用于创建路由的 sintax 是:
<Route path="/about">
<About />
</Route>
但是在 React Router 4(您说当前正在使用的那个(中创建路由的 sintax 是:
<Route
path={"/about"}
component={About}
/>
或者如果你想传递一些道具:
<Route
path={path}
component={
(props) => <About someProp={props.someProp}/>
}
/>
希望这有帮助