mobilemk/app/index.tsx
2024-12-23 18:04:05 +01: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>
);
}