react-native-template-allmax
Version:
React native template with navigation, redux, redux-saga, eslit, flow, reactotron
19 lines (15 loc) • 306 B
JavaScript
/**
* Created by Bardiaswift
*
* @flow
*/
import type {
SetApp,
OnAppStart,
} from './types';
import {
SET_APP,
ON_APP_START,
} from './actionTypes';
export const setApp: SetApp = payload => ({ type: SET_APP, payload });
export const onAppStart: OnAppStart = () => ({ type: ON_APP_START });