Redux state: Allow multiple calls to be stored
This commit is contained in:
parent
753e0279c6
commit
3468de255d
21 changed files with 1191 additions and 515 deletions
|
@ -5,3 +5,10 @@ export type NoopActionType = {
|
|||
type: 'NOOP';
|
||||
payload: null;
|
||||
};
|
||||
|
||||
export function noopAction(): NoopActionType {
|
||||
return {
|
||||
type: 'NOOP',
|
||||
payload: null,
|
||||
};
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue