Isn't the difference between useTransition and startTransition is useTransition is managing and delaying non-urgent transitions like ui changes on the screen that users/visitors can see, and it allows more urgent ui transition to change first before less urgent ui transitions, but startTransition is managing and delaying non-urgent /less urgent state updates to change after more urgent state updates. useTransition is for ui transitions on screen while startTransition is for state updates (like when the state variable update ).
Is this correct Hayk or did I get something wrong , especially with saying useTransition is dealing with ui transitions that the users can see?
I was studying this, but not sure if I got the difference correct. Hayk, what is the difference between useTransition and stateTransition, and isn't useTransition a React hook, while startTransition is a react function?