import React, { Component, Fragment } from 'react'; import { Text } from 'react-native' export default class Quote extends Component { render() { const { text, author } = this.props // destructuring return ( {text} — {author} ); } } // Styling in React Native mit JavaScript const styleText = { fontSize: 25, fontWeight: 'bold', color: 'black' }; const styleAuthor = { fontSize: 17, fontsStyle: 'italic', color: 'red' };