1. 프로젝트 생성
react-native init my_first_app
2. 시뮬레이터 실행
2-1 IOS 시뮬레이터 실행
npm run start
react-native run-ios
- 실행 시 pod install 에러나면 cd ios 이동 후 pod install 하면 됨
(사실 이거 해서 안되서 반나절만에 돌렸음... 여러가지해서 어떤것때문에 그런진 모르겠는데 node_modules > react-native > scripts에서 set -e -> set +e로 수정)
2-2 Android 시뮬레이터 실행
react-native run-android