Files
create-better-t-stack/apps/cli/templates/frontend/native/nativewind/app/modal.tsx.hbs
2025-09-12 00:11:41 +05:30

15 lines
393 B
Handlebars

import { Container } from "@/components/container";
import { Text, View } from "react-native";
export default function Modal() {
return (
<Container>
<View className="flex-1 p-6">
<View className="flex-row items-center justify-between mb-8">
<Text className="text-2xl font-bold text-foreground">Modal</Text>
</View>
</View>
</Container>
);
}