Advertisement
lddep

App.js

Jun 14th, 2019
373
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import React, {Component} from 'react';
  2. import {Platform, StyleSheet, Text, View} from 'react-native';
  3. import PresentationScreen from './appLimo/components/PresentationScreen';
  4. import FetchExample from './appLimo/components/TestRequest';
  5.  
  6. type Props = {};
  7. export default class App extends Component<Props> {
  8.   render() {
  9.     return (
  10.       <View style={styles.container}>
  11.         <FetchExample/>
  12.        
  13.        
  14.       </View>
  15.     );
  16.   }
  17. }
  18.  
  19. const styles = StyleSheet.create({
  20.   container: {
  21.     flex: 1,
  22.     alignItems: 'center',
  23.     backgroundColor: '#fff',
  24.   },
  25.  
  26. });
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement