spee.ch/react/reducers/site.js

13 lines
232 B
JavaScript
Raw Normal View History

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