import React, { Component } from 'react'; import { Text, Button, Modal, StyleSheet, TextInput, View } from 'react-native'; export default class NewQuote extends Component { state = { content: null, author: null } //Inizialer Zustand render() { const { visible, onSave } = this.props; // Einfachere strukturierung const { content, author } = this.state; return ( //Neuer Screen this.setState({ content: text })} /> {this.state.content} this.setState({ author: text })} />