UNPKG

611 BJavaScriptView Raw
1// @flow
2// API REDUCER INDEX
3// ============================================================================
4
5/*
6 * WARNING: This file was automatically generated. Do not modify it directly, or
7 * your changes will be overwritten.
8 */
9
10import { combineReducers } from 'redux';
11
12import profile from './profile';
13import status from './status';
14
15import type { profileState } from './profile';
16import type { statusState } from './status';
17
18export type apiReducerShape = {
19 profile: profileState,
20 status: statusState,
21};
22
23const apiReducer = combineReducers({
24 profile,
25 status,
26});
27
28export default apiReducer;