Fix Interactive Import, Add Track Actions and Reducers

This commit is contained in:
Qstick 2017-09-24 01:10:24 -04:00
parent 8f45fe0afe
commit 90d9741056
13 changed files with 193 additions and 27 deletions

View file

@ -0,0 +1,11 @@
import createFetchHandler from './Creators/createFetchHandler';
import * as types from './actionTypes';
const section = 'tracks';
const trackActionHandlers = {
[types.FETCH_TRACKS]: createFetchHandler(section, '/track')
};
export default trackActionHandlers;