Merge branch 'assessment' into tutorial

This commit is contained in:
Delucse
2020-09-08 12:07:55 +02:00
parent 29d77d0bc6
commit c1d3962fb4
10 changed files with 417 additions and 125 deletions
+3 -1
View File
@@ -1,6 +1,8 @@
import { combineReducers } from 'redux';
import workspaceReducer from './workspaceReducer';
import tutorialReducer from './tutorialReducer';
export default combineReducers({
workspace: workspaceReducer
workspace: workspaceReducer,
tutorial: tutorialReducer
});