insomnia/app/reducers/settings.js
Gregory Schier 4c93317f45 A bunch
2016-04-09 19:58:48 -07:00

9 lines
146 B
JavaScript

const initialState = {};
export default function (state = initialState, action) {
switch (action.type) {
default:
return state
}
}