index.js 678 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) => () => {
    console.log('pressed 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