| changeset 87 | dbcee57de2c6 |
| child 129 | d48946d164c6 |
| 86:fa8ef84a1780 | 87:dbcee57de2c6 |
|---|---|
1 import * as types from '../constants/actionTypes'; |
|
2 |
|
3 export const dataFetchSuccess = (res) => { |
|
4 return { |
|
5 type: types.DATA_FETCH_SUCCESS, |
|
6 res |
|
7 }; |
|
8 } |
|
9 |
|
10 export const offlineConfigInitialized = (additionalContext) => { |
|
11 return { |
|
12 type: types.OFFLINE_CONFIG_INITIALIZED, |
|
13 additionalContext |
|
14 } |
|
15 } |