Add Youtube videos to the map (#13592)

This commit is contained in:
Stuart Taylor
2017-05-04 00:03:59 +01:00
committed by Quincy Larson
parent 0d9db6ea35
commit 4a3fcba501
23 changed files with 711 additions and 14 deletions

View File

@@ -1,10 +1,12 @@
import fetchUserSaga from './fetch-user-saga';
import loadCurrentChallengeSaga from './load-current-challenge-saga';
import fetchYoutubeSaga from './fetch-youtube-saga';
export { default as reducer } from './reducer';
export * as actions from './actions';
export { default as types } from './types';
export const sagas = [
fetchUserSaga,
loadCurrentChallengeSaga
loadCurrentChallengeSaga,
fetchYoutubeSaga
];