Learn about the function signatures of actions, effects, and subscriptions in Hyperapp 2 and how they are used in apps.
Actions:
- Are declared as constant arrow functions (
const ActionFunction = (s, p) => ns
). - Should have names written in
PascalCase
.