ComponentState

data class ComponentState<S : StateContainer>(val value: S, val eventDispatchInfo: EventDispatchInfo? = null)

This object holds all the state the component created during render. It includes the mutable state, cached values, event dispatch info, etc.

Constructors

Link copied to clipboard
constructor(value: S, eventDispatchInfo: EventDispatchInfo? = null)

Properties

Link copied to clipboard
Link copied to clipboard
val value: S