mirror of
https://github.com/reduxjs/redux-devtools.git
synced 2024-11-10 19:56:54 +03:00
TodoMVC: Fixing deprecated issues in AppContainer
The following warnings are fixed. 1) warning.js:44 Warning: Failed prop type: Passing "props" prop to <AppContainer /> is deprecated. Replace <AppContainer component={App} props={{ myProp: myValue }} /> with <AppContainer><App myProp={myValue} /></AppContainer>. in AppContainer 2) Warning: Failed prop type: Passing "component" prop to <AppContainer /> is deprecated. Replace <AppContainer component={App} /> with <AppContainer><App /></AppContainer>. in AppContainer
This commit is contained in:
parent
8cdee0a358
commit
5047cf2d6d
|
@ -8,20 +8,22 @@ import Root from './containers/Root';
|
|||
const store = configureStore();
|
||||
|
||||
render(
|
||||
<AppContainer
|
||||
component={Root}
|
||||
props={{ store }}
|
||||
/>,
|
||||
<AppContainer>
|
||||
<Root
|
||||
store={ store }
|
||||
/>
|
||||
</AppContainer>,
|
||||
document.getElementById('root')
|
||||
);
|
||||
|
||||
if (module.hot) {
|
||||
module.hot.accept('./containers/Root', () => {
|
||||
render(
|
||||
<AppContainer
|
||||
component={require('./containers/Root').default}
|
||||
props={{ store }}
|
||||
/>,
|
||||
<AppContainer>
|
||||
<Root
|
||||
store={ store }
|
||||
/>
|
||||
</AppContainer>,
|
||||
document.getElementById('root')
|
||||
);
|
||||
});
|
||||
|
|
Loading…
Reference in New Issue
Block a user