MyAbout.js 682 B

123456789101112131415161718192021222324
  1. import React, { Component } from 'react';
  2. import { View, Text, Image } from 'react-native';
  3. const MyAbout = () => {
  4. return (
  5. <View style={{flex:1}}>
  6. <Text style={{fontSize:20, alignSelf:'center', fontWeight:'700'}}>
  7. ESPECIFICOS Buenos Aires
  8. </Text>
  9. <Image source={require('../../img/casa.png')}
  10. style={{height: 300, width:400}}
  11. resizeMode='contain'
  12. />
  13. <Text>Leopoldo Marechal 914, CABA (C1405BMD), Buenos Aires, Argentina.</Text>
  14. <Text>
  15. Teléfono: +5411 4139-6860/1 +5411 4982-2892.
  16. </Text>
  17. <Text>Cómo llegar?</Text>
  18. </View>
  19. );
  20. }
  21. export default MyAbout;