與react-router - pass props to handler component類似,但在我的情況下,我的組件是在變量中聲明的elem.component
,我試圖構建一個傳遞showModal
函數的路由數組。傳遞處理程序組件(在變量中定義)
這是我到目前爲止已經試過
routes.push(
<Route key={elem.to} exact path={elem.to}
component={elem.component} showModal={this.props.showModal}/>)
我一直在尋找的答案,其他的渲染方法,但他們在這我不我的情況下具有的功能定義的組件。
我的組件是'elem.component'一個變量。 –