I want to create a React web app that may or may not become a native app, and for that I'd like to develop it using React Native for Web. However, I'm not sure what is the best course of action, to keep the native targets a realistic possibility:
- Do I use
react-native init
, then add the web aspects on top of it? - Do I use
create-react-native-app
and do the same? - Do I use create a webpack based react-native-for-web app and then add ios or android specific features?