Module flow

Module flow 

Source
Expand description

Iteration utility components for template.

Iteration can be either “keyed” or “non keyed”. Use the Keyed and Indexed utility components respectively.

Structs§

IndexedProps
Props for Indexed.
KeyedProps
Props for Keyed.

Functions§

Indexed
Non keyed iteration (or keyed by index). Use this instead of directly rendering an array of TemplateResults. Using this will minimize re-renders instead of re-rendering every single node on every state change.
Keyed
Keyed iteration. Use this instead of directly rendering an array of TemplateResults. Using this will minimize re-renders instead of re-rendering every single node on every state change.