Files
talk/plugins/talk-plugin-toxic-comments/client/reducer.js
T
Jeff Nelson 88f06744b4 unignore
2017-07-31 11:59:15 -04:00

19 lines
331 B
JavaScript

import {OFFTOPIC_TOGGLE_CHECKBOX} from './constants';
const initialState = {
checked: false
};
export default function offTopic (state = initialState, action) {
switch (action.type) {
case OFFTOPIC_TOGGLE_CHECKBOX: {
return {
...state,
checked: !state.checked
};
}
default :
return state;
}
}