react-native-template-allmax
Version:
React native template with navigation, redux, redux-saga, eslit, flow, reactotron
20 lines (14 loc) • 283 B
JavaScript
/**
* Created by Bardiaswift
*
* @flow
*/
import type { AppState } from './types';
import { makeReducer } from '~/global';
import {
SET_APP,
} from './actionTypes';
const initialState: AppState = {
isLoading: false,
};
export default makeReducer(initialState, SET_APP);