useState<T> function

Reactive<T> useState<T>(
  1. T initialValue
)

Creates a stateful value that can be used in functional contexts. This is a simplified version - in a full implementation, this would integrate with a widget system to manage the lifecycle.

Implementation

Reactive<T> useState<T>(T initialValue) {
  return Reactive<T>(initialValue);
}