spee.ch/react/reducers/site.js

13 lines
226 B
JavaScript
Raw Normal View History

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