import { Container } from "@/components/container"; import { StatusBar } from "expo-status-bar"; import { Platform, Text, View } from "react-native"; import { StyleSheet } from "react-native-unistyles"; export default function Modal() { return ( <> Model ); } const styles = StyleSheet.create((theme) => ({ text: { color: theme.colors.typography, }, container: { flex: 1, paddingBottom: 100, justifyContent: "center", alignItems: "center", }, }));