React Native [2] – Project

프로젝트 생성

$ expo-cli init 프로젝트명
$ cd 프로젝트명

디렉터리 구조

  • 프로젝트명
    • assets
    • node_modules
    • screens
      • HomeScreen.js
      • SecondScreen.js
    • App.js
    • app.json
    • babel.config.js
    • package.json

screens : 화면을 분할하여 작성하도록하는 디렉터리
App.js : 메인으로 실행되는 파일로 본 프로젝트에서는 screens에 작성한 파일들로 연결해주는 로직을 작성할 것이다.

Leave a Comment