user reducer

Reviewed By: jknoxville

Differential Revision: D14224403

fbshipit-source-id: 8341dd8af03148c4b1f648641bda522804acb22d
This commit is contained in:
Daniel Büchele
2019-02-28 07:25:07 -08:00
committed by Facebook Github Bot
parent ffa586dd49
commit ff0de8caaa
6 changed files with 133 additions and 0 deletions

View File

@@ -13,6 +13,7 @@ import tracking from './tracking';
import server from './server';
import notifications from './notifications';
import plugins from './plugins';
import user from './user';
import type {Logger} from '../fb-interfaces/Logger.js';
import type {Store} from '../reducers/index.js';
@@ -27,4 +28,5 @@ export default (store: Store, logger: Logger) =>
server,
notifications,
plugins,
user,
].forEach(fn => fn(store, logger));