spee.ch/react/reducers/site.js
2018-02-05 18:14:12 -08:00

12 lines
226 B
JavaScript

const { site } = require('../../config/speechConfig.js');
const initialState = {
host: site.host,
};
export default function (state = initialState, action) {
switch (action.type) {
default:
return state;
}
}