import { Container } from "@/components/container"; import { Text, View } from "react-native"; import { StyleSheet } from "react-native-unistyles"; export default function Modal() { return ( Modal ); } const styles = StyleSheet.create((theme) => ({ container: { flex: 1, padding: theme.spacing.lg, }, header: { flexDirection: "row", alignItems: "center", justifyContent: "space-between", marginBottom: theme.spacing.xl, }, title: { fontSize: theme.fontSize["2xl"], fontWeight: "bold", color: theme.colors.foreground, }, }));