/** * 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. * * @format * @flow */ 'use strict'; const React = require('react'); const { Alert, KeyboardAvoidingView, Modal, StyleSheet, Text, TextInput, Button, Pressable, TouchableOpacity, View, } = require('react-native'); const {useState} = require('react'); const onButtonPress = () => { Alert.alert('Successfully Registered!'); }; const TextInputForm = () => { return (