Files
examples/blank/App.js
2020-05-19 10:54:41 -07:00

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>
);
}