1)如果我要导入一个组件,我可以向这样的组件发送道具,
<ImportedComponent props={props} />
有没有办法向组件发送道具,如果我正在使用Route?
<Route path={"...somePath"} component= {someComponent} />
2)另外,如果我已经在所需的路径中,使用
有什么不同<Route />
以这种方式加载组件并直接引用导入的组件,
<ImportedComponent />
答案 0 :(得分:0)
您可以使用render
<Route
path={"...somePath"}
render={(props) => (<someComponent {...props} otherProps={otherProps} />)}
/>