DanieleCalisti

App.js

Nov 23rd, 2020
151
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. import { StatusBar } from 'expo-status-bar';
  2. import React from 'react';
  3. import { StyleSheet, Text, View } from 'react-native';
  4. import HeaderMeteo from './components/HeaderMeteo'
  5.  
  6. export default class App extends React.Component {
  7.  
  8.   render()
  9.   {
  10.     return (
  11.       <View style={styles.container}>
  12.         <HeaderMeteo title={'Meteo app'}/>
  13.       </View>
  14.     );
  15.   }
  16.  
  17. }
  18.  
  19. const styles = StyleSheet.create({
  20.   container:
  21.   {
  22.     height: "100%"
  23.   }
  24. });
  25.  
Add Comment
Please, Sign In to add comment