I have a small react-native
sample app that I just wrote.
It is working as a web app, but now I want to test it as an iOS app.
To know how to do that I am looking at this document: https://reactnative.dev/docs/running-on-device
The document starts like this:
1. Plug in your device via USB
Connect your iOS device to your Mac using a USB to Lightning cable.
Navigate to the ios folder in your project, then open the .xcodeproj file, .....
The problem is that my project has no ios folder. What did I miss?
This is how I built the project in the terminal:
$ expo init MyApp
$ cd MyApp
$ npm install expo-av
$ npm run web
After that I wrote App.js and that's all. And it works as web app.