Using $checked alone - no handler needed! The cell automatically updates.
{ifElse( simpleEnabled, "✓ Feature is enabled!", "⚠ Feature is disabled", )}
Use a handler when you need to run additional code (logging, validation, side effects)
Value: {ifElse(trackedEnabled, "✓ Enabled", "⚠ Disabled")}
(Check console for logging)
$checked automatically updates the Cell{" "} - you don't need a handler unless you want to add extra logic beyond just updating the value.