diff -r fa8ef84a1780 -r dbcee57de2c6 client/src/actions/networkActions.js --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/client/src/actions/networkActions.js Mon Jun 26 15:21:06 2017 +0200 @@ -0,0 +1,15 @@ +import * as types from '../constants/actionTypes'; + +export const dataFetchSuccess = (res) => { + return { + type: types.DATA_FETCH_SUCCESS, + res + }; +} + +export const offlineConfigInitialized = (additionalContext) => { + return { + type: types.OFFLINE_CONFIG_INITIALIZED, + additionalContext + } +}