This commit is contained in:
Jori Lallo
2016-04-28 22:25:37 -07:00
parent 2f9233222d
commit cce82b3d43
79 changed files with 1495 additions and 496 deletions

View File

@@ -7,8 +7,8 @@ import {
TOGGLE_HISTORY_SIDEBAR,
ADD_REVISION,
REPLACE_TEXT,
ActiveEditors,
} from '../Actions';
ActiveEditors
} from '../actions';
const activeEditors = (state = [ActiveEditors.MARKDOWN, ActiveEditors.TEXT], action) => {
switch (action.type) {
@@ -103,8 +103,13 @@ const text = (state = textDefaultState, action) => {
}
};
import team from './team';
import user from './user';
export default combineReducers({
activeEditors,
historySidebar,
text,
user,
team,
});