2022-02-09 21:16:20 +00:00
|
|
|
import { Store } from 'redux';
|
|
|
|
|
2022-04-07 14:19:54 +00:00
|
|
|
import { IApplicationState } from '../../definitions';
|
2022-02-09 21:16:20 +00:00
|
|
|
|
|
|
|
// https://redux.js.org/faq/code-structure#how-can-i-use-the-redux-store-in-non-component-files
|
|
|
|
export let store: Store<IApplicationState> = null as any;
|
|
|
|
|
|
|
|
export const initStore = (_store: Store): void => {
|
|
|
|
store = _store;
|
|
|
|
};
|