UNPKG
hp-redux
Version:
latest (0.1.1)
0.1.1
0.1.0
Hearthstone simulator
github.com/Bebersohl/hp-redux
Bebersohl/hp-redux
hp-redux
/
src
/
reducers
/
secrets.js
13 lines
(9 loc)
•
192 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
/* eslint-env node*/
const
initialState
=
{};
const
secrets
=
(state = initialState, action) => {
switch
(action.type) {
default
:
return
state; } };
module
.
exports
= secrets;