| 123456789101112131415161718192021222324 |
- import React, { Component } from 'react';
- import { View, Text, Image } from 'react-native';
- const MyAbout = () => {
- return (
- <View style={{flex:1}}>
- <Text style={{fontSize:20, alignSelf:'center', fontWeight:'700'}}>
- ESPECIFICOS Buenos Aires
- </Text>
- <Image source={require('../../img/casa.png')}
- style={{height: 300, width:400}}
- resizeMode='contain'
- />
- <Text>Leopoldo Marechal 914, CABA (C1405BMD), Buenos Aires, Argentina.</Text>
- <Text>
- Teléfono: +5411 4139-6860/1 +5411 4982-2892.
- </Text>
- <Text>Cómo llegar?</Text>
- </View>
- );
- }
- export default MyAbout;
|