mattermost-mobile/app/store/store.ts
Elias Nahum 0e2bc65d70
MM-23848 consolidate store, upgrade mmkv and fix logout (#4145)
* MM-23848 consolidate store, upgrade mmkv and fix logout

* Feedback review

* Add store.ts to modulesPath
2020-04-18 10:18:24 -04:00

17 lines
No EOL
380 B
TypeScript

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
import * as redux from 'redux';
import {Persistor} from 'redux-persist';
class Store {
redux: redux.Store | null;
persistor: Persistor | null;
constructor() {
this.redux = null;
this.persistor = null;
}
}
export default new Store();