Skip to content
Snippets Groups Projects
Select Git revision
  • 075eeec1f639315c43e5b4f85a3401c539b707fc
  • main default
2 results

utility.py

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;