index.js
646 Bytes
import React, { Component } from 'react'
import { View, Image, Linking } from 'react-native'
import css from './style'
const imgSrc = require('../../assets/logos/jaikuaamina.png')
class FooterSenatics extends Component {
myHandlePress = (link) => () => {
Linking.openURL(link)
}
resizeMode='center'
resizeMethod='resize'
render() {
return (
<View style={css.imageContainer} >
<Image
style={css.image}
source={imgSrc}
resizeMode='center'
resizeMethod='resize'
/>
</View>
)
}
}
export default FooterSenatics