hackernews-expo

Hackernews expo client
git clone http://git.hanabi.in/repos/hackernews-expo.git
Log | Files | Refs | LICENSE

App.js (313B)


      1 import React from 'react';
      2 import { SafeAreaView } from 'react-native';
      3 import AppContainer from './src/components/AppContainer';
      4 
      5 import styles from './assets/styles';
      6 
      7 function App() {
      8   return (
      9     <SafeAreaView style={styles.container}>
     10       <AppContainer />
     11     </SafeAreaView>
     12   );
     13 }
     14 
     15 export default App;