mirror of
https://github.com/zhigang1992/examples.git
synced 2026-01-12 22:47:03 +08:00
17 lines
304 B
JavaScript
17 lines
304 B
JavaScript
import * as React from "react";
|
|
import { View, Text } from "react-native";
|
|
|
|
export default function App() {
|
|
return (
|
|
<View
|
|
style={{
|
|
flex: 1,
|
|
justifyContent: "center",
|
|
alignItems: "center",
|
|
}}
|
|
>
|
|
<Text>Universal React with Expo</Text>
|
|
</View>
|
|
);
|
|
}
|