RowValue
RowValue renders a MotionValue as text and updates whenever the value changes. Use it for
animated counters, scroll progress, drag offsets, and other readouts that would otherwise need
value.on('change', ...) plus a signal.
Progress
Props
value- theMotionValueto read. Required.
The value is coerced with String(...) for rendering, so any scalar MotionValue<T> works. Wrap
with createTransform first if you want to format (e.g. Math.round for integer counters).