我使用如下共享的全局状态:
interface DashboardProps extends React.Props<Dashboard> {
globalState? : GlobalState
}
export class Dashboard extends React.Component<DashboardProps, any>{
}
在AppLayout
我称之为:
<Route path='/dashboard'>
<Dashboard globalState={this.state} />
</Route>
假设在Dashboard
课堂上我需要更改globalState
,最好的方法是什么?
谢谢