Merge pull request #1235 from palashgdev/store-fix-1

fix: using legacy_createStore instead of createStore as it seem it is depecreated
This commit is contained in:
Palash 2022-06-24 00:34:54 +05:30 committed by GitHub
commit d68334b2ca
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,4 +1,8 @@
import { applyMiddleware, compose, createStore } from 'redux';
import {
applyMiddleware,
compose,
legacy_createStore as createStore,
} from 'redux';
import thunk, { ThunkMiddleware } from 'redux-thunk';
import AppActions from 'types/actions';