Files
talk/plugins/coral-plugin-respect/client/reducer.js
T

13 lines
198 B
JavaScript

import {Map} from 'immutable';
const initialState = Map({
clicked: false
});
export function respect (state = initialState, action) {
switch (action.type) {
default:
return state;
}
}