[React Native] 2장 컴포넌트 구조 이해
1. 기본 프로젝트 구조프로젝트를 생성하면 기본 폴더 구조는 다음과 같습니다.MyExpoApp/├── assets/├── node_modules/├── App.js├── app.json└── package.json2. 기본 컴포넌트Viewreact-native를 제일 먼저 실행하면 보이는 곳은 app -> (tabs) -> index.tsx 부분입니다 이곳은 다음과 같이 수정합니다.import React from "react";import { View, StyleSheet } from "react-native";const App = () => { return ;};const styles = StyleSheet.create({ container: { flex: 1, justifyContent..