참고 : https://styled-components.com/docs/basics#react-native styled-components: Basics Get Started with styled-components basics. styled-components.com npm i styled-components import React from "react"; import styled from "styled-components/native"; const Btn = styled.TouchableOpacity` flex: 1; justify-content: center; align-items: center; `; const Title = styled.Text` color: ${(props) => (props...