We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
recreate the concept
middleware
Store { state private reducer(state, action) { switch(action) { return state.copy(); } } dispatch(action) { return reducer(state, action) } } action: {type: string, payload: any}
recreate the concept
middleware