Reducer and constants

This commit is contained in:
Belen Curcio
2017-01-24 14:22:58 -03:00
parent f375ff48c9
commit 365f60c428
2 changed files with 7 additions and 4 deletions
@@ -0,0 +1,3 @@
export const FETCH_ASSET_REQUEST = 'FETCH_ASSET_REQUEST';
export const FETCH_ASSET_FAILURE = 'FETCH_ASSET_FAILURE';
export const FETCH_ASSET_SUCCESS = 'FETCH_ASSET_SUCCESS';
+4 -4
View File
@@ -5,9 +5,9 @@ import auth from './auth';
import user from './user';
export default {
config,
items,
notification,
auth,
user
user,
items,
config,
notification
};