Select Git revision
-
wooshanghyeon authoredwooshanghyeon authored
App.js 294 B
/**
* Sample React Native App
* https://github.com/facebook/react-native
*
* @format
* @flow strict-local
*/
import React from 'react';
import {Text, View} from 'react-native';
const App = () => {
return (
<View>
<Text>Hello</Text>
</View>
);
};
export default App;