fix: using legacy_createStore instead of createStore as it seem it is depecreated

This commit is contained in:
Palash gupta 2022-06-06 10:48:12 +05:30
parent 697fd1d1bf
commit d150cfa46c
No known key found for this signature in database
GPG Key ID: 8FD05AE6F9150AD6

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';