render

inline fun <V> Flow<V>.render(into: RenderContext? = null, crossinline content: RenderContext.(V) -> Unit)

Renders the data of a Flow as Tags to the DOM.

Parameters

<receiver>

Flow containing the data

into

target to mount content to. If not set a child DIV is added to the Tag this method is called on

content

RenderContext for rendering the data to the DOM