Redux state: Allow multiple calls to be stored

This commit is contained in:
Evan Hahn 2020-11-06 11:36:37 -06:00 committed by GitHub
parent 753e0279c6
commit 3468de255d
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
21 changed files with 1191 additions and 515 deletions

View file

@ -5,3 +5,10 @@ export type NoopActionType = {
type: 'NOOP';
payload: null;
};
export function noopAction(): NoopActionType {
return {
type: 'NOOP',
payload: null,
};
}