pitaya-launcher/js/store/reducers/theme.js
2015-09-16 17:26:56 +02:00

15 lines
236 B
JavaScript

var actions = require('../actions');
module.exports = function(currentTheme, action) {
switch(action.type) {
case actions.edit.USE_ICON_THEME:
return action.theme;
default:
return currentTheme || null;
}
};