An array or an IObservable that contains the list of items to render.
A function that takes an item from the list and returns a CTag to render.
Optional
key: (val: T) => anyAn optional function that returns a unique key for each item in the list. This is used to optimize the rendering process.
Render a CTag for each item in the provided list.
each
can work with a goold old array, or with a IObservable. If you provide aObservable
, the list will update whenever theObservable
changes.