Expand description
Component runtime - manages lifecycle, state, and re-rendering
Design Philosophy:
- Components are just data + render function
- State changes trigger automatic re-renders
- Runtime handles all the complexity
Architecture:
Component State → Signal<T> → Update → Notify Runtime → Re-render → Patch DOMStructs§
- Component
Runtime - Component runtime manages the lifecycle of a mounted component