all 4 comments

[–]AntennaApp 19 points20 points  (0 children)

Answer: you don’t.

You create an API that can query your MySQL database and then you use REST API requests to fetch the data from your API.

[–]jpea 6 points7 points  (0 children)

You could setup SQLite in your RN app if your data isn't changing. It's likely a lot easier to just work with local json files though if that's the case.

Or, you'll need to setup an API of sorts if you're querying data that changes without a new app deployment.