Files
30-seconds-of-code/node_modules/gatsby/dist/redux/reducers/webpack-compilation-hash.js
2019-08-20 15:52:05 +02:00

12 lines
246 B
JavaScript

"use strict";
module.exports = (state = ``, action) => {
switch (action.type) {
case `SET_WEBPACK_COMPILATION_HASH`:
return action.payload;
default:
return state;
}
};
//# sourceMappingURL=webpack-compilation-hash.js.map