The props method is used to define any additional metadata needed for the handling of the action . Action creators provide a consistent, type-safe way to construct an action that is being dispatched.9 Mar 2021
Read moreWhat are actions in Angular?
An action is a JavaScript object that has a type property describing what happens in your app , such as a user wants to buy IBM stock. Besides the type property, an action object can optionally have another property with a payload of data that should change the app state in some fashion.
Read moreHow do I name my actions in NgRx?
naming actions (for state) DO name actions with a unique name and captial letters – VERB + NOUN . DO name actions values with – Prefix + VERB + NOUN.
Read more