import React from "react"; import styled from "styled-components/native"; import { View, Text } from "react-native"; export default function App() { return ( Expo with 💅 Styled Components iOS • Android • web ); } const Container = styled(View)` flex: 1; background-color: papayawhip; justify-content: center; align-items: center; `; const Title = styled(Text)` font-size: 24px; font-weight: 500; color: ${(props) => props.color}; `;