Kyoo/front/app/index.tsx
2025-06-07 19:30:04 +02:00

17 lines
257 B
TypeScript

import { View, Text } from "react-native";
export default function MyApp() {
return (
<View
style={{
flex: 1,
justifyContent: "center",
alignItems: "center",
minHeight: "100%",
}}
>
<Text>Hello from One</Text>
</View>
);
}