Feature(challenges): add bug modal and logic

This commit is contained in:
Berkeley Martinez
2016-07-11 21:54:55 -07:00
parent efcfaf0391
commit 57b6debb44
11 changed files with 202 additions and 13 deletions

View File

@@ -3,6 +3,7 @@ import completionSaga from './completion-saga';
import nextChallengeSaga from './next-challenge-saga';
import answerSaga from './answer-saga';
import resetChallengeSaga from './reset-challenge-saga';
import bugSaga from './bug-saga';
export * as actions from './actions';
export reducer from './reducer';
@@ -15,5 +16,6 @@ export const sagas = [
completionSaga,
nextChallengeSaga,
answerSaga,
resetChallengeSaga
resetChallengeSaga,
bugSaga
];