poker-chips-helper/app/index.tsx
2025-02-07 20:16:55 -08:00

16 lines
288 B
TypeScript

import { Text, View } from "react-native";
export default function Index() {
return (
<View
style={{
flex: 1,
justifyContent: "center",
alignItems: "center",
}}
>
<Text>Edit app/index.tsx to edit this screen.</Text>
</View>
);
}