컴포넌트 View View는 다른 컴포넌트를 담고 배치하는 컴포넌트 View안에는 텍스트를 넣을 수 없다. Text 컴포넌트로 감싼 텍스트를 넣어야 한다. Text style={const객체.스타일이름} margin: 간격 넓이 borderWidth: 테두리 두께 borderColor: 테두리 색상 padding: 여백 넓이 TextInput 사용자가 텍스트를 입력할 수 있게 해주는 컴포넌트 Button Button 사용시 import에 Button 적어주기 예제 import { StyleSheet, Text, View, Button } from 'react-native'; export default function App() { return ( Another piece of Text! Hello Wor..