Skip to content
Snippets Groups Projects
Select Git revision
  • 2f7f068e145d72621a49e397334ce5e7f995841f
  • main 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;