import React from "react"; import { StyleSheet, Text, View, } from 'react-native'; const styles = StyleSheet.create({ bigblue: { color: 'blue', fontWeight: 'bold', fontSize: 30, }, red: { color: 'red', }, }); class LotsOfStyles extends React.Component { render() { return ( Just big blue Just red Big blue, then red Red, then big blue ); } } export default LotsOfStyles;