- 오늘 학습한 내용. 리액트 네이티브에 입문함. 초기 세팅 작동 원리 탐구. - 오늘의 코드 내용. import React from 'react'; import { StyleSheet, Text, View, SafeAreaView, TouchableOpacity } from 'react-native'; import { NavigationContainer } from '@react-navigation/native'; import { createStackNavigator } from '@react-navigation/stack'; import styled from "styled-components/native"; import 'react-native-gesture-handler'; function Home..