Skip to content
Snippets Groups Projects
Select Git revision
  • 19918d25cd85fedb7e960cd83474ccd7dcab8e1d
  • master default protected
2 results

App.js

Blame
  • 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;