Reviewed By: jknoxville Differential Revision: D14224403 fbshipit-source-id: 8341dd8af03148c4b1f648641bda522804acb22d
33 lines
857 B
JavaScript
33 lines
857 B
JavaScript
/**
|
|
* Copyright 2018-present Facebook.
|
|
* This source code is licensed under the MIT license found in the
|
|
* LICENSE file in the root directory of this source tree.
|
|
* @format
|
|
*/
|
|
|
|
import androidDevice from './androidDevice';
|
|
import iOSDevice from './iOSDevice';
|
|
import windowsDevice from './windowsDevice';
|
|
import application from './application';
|
|
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';
|
|
|
|
export default (store: Store, logger: Logger) =>
|
|
[
|
|
application,
|
|
androidDevice,
|
|
iOSDevice,
|
|
windowsDevice,
|
|
tracking,
|
|
server,
|
|
notifications,
|
|
plugins,
|
|
user,
|
|
].forEach(fn => fn(store, logger));
|