spee.ch/react/reducers/site.js

16 lines
315 B
JavaScript
Raw Normal View History

const { details: { host }, assetDefaults: { thumbnail: defaultThumbnail } } = require('../../config/siteConfig.js');
2018-02-06 03:14:12 +01:00
const initialState = {
host,
defaults: {
defaultThumbnail,
},
2018-02-06 03:14:12 +01:00
};
export default function (state = initialState, action) {
switch (action.type) {
default:
return state;
}
}