/** * Copyright (c) Facebook, Inc. and its affiliates. * * This source code is licensed under the MIT license found in the * LICENSE file in the root directory of this source tree. * * @flow * @format */ 'use strict'; const React = require('React'); const ReactNative = require('react-native'); const { Alert, Button, InputAccessoryView, ScrollView, StyleSheet, Text, TextInput, View, } = ReactNative; type MessageProps = $ReadOnly<{||}>; class Message extends React.PureComponent { render() { return ( Text Message ); } } type TextInputProps = $ReadOnly<{||}>; type TextInputState = {|text: string|}; class TextInputBar extends React.PureComponent { state = {text: ''}; render() { return ( { this.setState({text}); }} value={this.state.text} placeholder={'Type a message...'} />