You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I mean, it could be that you are indeed exporting both, but it'd be a lot less confusing if you exported one instead and the documentation reflected that.
import { configureStore } from 'redux-mock-store' //ES6 modules
const { configureStore } = require('redux-mock-store') //CommonJS
/* or */
import configureStore from 'redux-mock-store' //ES6 modules
const configureStore = require('redux-mock-store') //CommonJS
The text was updated successfully, but these errors were encountered:
I mean, it could be that you are indeed exporting both, but it'd be a lot less confusing if you exported one instead and the documentation reflected that.
The text was updated successfully, but these errors were encountered: