/** * Copyright (c) Meta Platforms, Inc. and 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 {useState} = require('react'); const { Alert, Button, KeyboardAvoidingView, Modal, Pressable, StyleSheet, Text, TextInput, TouchableOpacity, View, } = require('react-native'); const onButtonPress = () => { Alert.alert('Successfully Registered!'); }; const TextInputForm = () => { return (