How to use Redux and MobX on same project

828 Views Asked by At

Both Redux and MobX seem to have their own custom 'Provider' which makes using both in the same project, not possible. Did any one manage to solve this some how?

1

There are 1 best solutions below

0
On

Haven't tested it but if you want to avoid naming collisions you could give custom names when importing those Providers

import { Provider as ReduxProvider } from 'react-redux'
import { Provider as MobxProvider} from 'mobx-react'


// ...

ReactDOM.render(
  (<ReduxProvider store={yourReduxStore}>
    <MobxProvider someStore={yourMobxStore}>
      <App />
    </MobxProvider>
  </ReduxProvider>
 ),
 document.querySelector('#yourMountingPoint')
)