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