mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-10-18 04:20:43 -04:00
17 lines
257 B
TypeScript
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>
|
|
);
|
|
}
|