react-native-navigation (1) 썸네일형 리스트형 wix/react-native-navigation 코드 분석 react-native cli로 앱을 생성하면 아래와 같은 index.js 파일이 생성됩니다.import {AppRegistry} from 'react-native';import {name as appName} from './app.json';AppRegistry.registerComponent(appName, () => App); AppRegistry.registerComponent는 입력받은 컴포넌트를 모듈 내부의 Runnables 객체에 등록합니다.https://github.com/facebook/react-native/blob/v0.75.3/packages/react-native/Libraries/ReactNative/AppRegistry.js#L66-L127 Runnables 객체에는 여러 개의.. 이전 1 다음