React Native’s New Architecture gives JavaScript more direct access to native functionality.

One important capability is synchronous communication through TurboModules.

That can be useful.

It can also introduce a performance problem that is easy to miss:


A native method being synchronous does not mean the native work is fast.


The...