export default { namespace: "@@teeMoCore", initialState: { count: 0 }, reducers: { plusCount: (state) => ({...state, count: state.count + 1}) } }