21 lines
622 B
JavaScript
21 lines
622 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 application from './application';
|
|
import tracking from './tracking';
|
|
import server from './server';
|
|
|
|
import type Logger from '../fb-stubs/Logger.js';
|
|
import type {Store} from '../reducers/index.js';
|
|
|
|
export default (store: Store, logger: Logger) =>
|
|
[application, androidDevice, iOSDevice, tracking, server].forEach(fn =>
|
|
fn(store, logger),
|
|
);
|