Files
talk/plugins/talk-plugin-featured-comments/client/reducer.js
T
2017-07-21 05:24:45 -03:00

23 lines
385 B
JavaScript

import {SHOW_TOOLTIP, HIDE_TOOLTIP} from './constants';
const initialState = {
tooltip: false
};
export default function featured (state = initialState, action) {
switch (action.type) {
case SHOW_TOOLTIP:
return {
...state,
tooltip: true
};
case HIDE_TOOLTIP:
return {
...state,
tooltip: false
};
default :
return state;
}
}