ACTIONS
Internal Actions
Simple Action
export class FeedAnimals {
static readonly type = '[Zoo] Feed Animals';
}Actions with Metadata
export class FeedZebra {
static readonly type = '[Zoo] Feed Zebra';
constructor(
public name: string,
public hayAmount: number
) {}
}Dispatching Actions
How should you name your actions?
Commands
Event examples
Group your actions
Last updated

