15 lines
288 B
TypeScript
15 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>
|
|
);
|
|
}
|