Answer
PWA vs React Native: which should I build?
A PWA is a single website that runs in the browser and can be installed without an app store; React Native compiles JavaScript into genuinely native iOS and Android UI components and ships through the App Store and Play Store. Choose a PWA for the widest reach and lowest cost, and React Native when you need deep native APIs, top App Store placement, or native performance for animation-heavy UI.
Distribution
PWAs install directly from a browser URL; React Native apps require App Store and Play Store review and updates go through app-store release cycles.
Native API access
React Native has broader native module access (Bluetooth LE, background location, native camera controls) than the web platform currently exposes.
Shared logic
Some teams share business logic between a PWA and a React Native app while keeping separate UI layers, though this adds architectural complexity.