verdnatura-chat/app/lib/store/auxStore.ts

11 lines
315 B
TypeScript
Raw Normal View History

2022-02-28 18:00:47 +00:00
import { Store } from 'redux';
2022-04-28 18:45:00 +00:00
import { IApplicationState } from '../../definitions';
2022-02-28 18:00:47 +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;
};