Untitled

mail@pastecode.io avatar
unknown
plain_text
a year ago
425 B
0
Indexable
Never
import React from 'react'
import { View, Text, StyleSheet } from 'react-native'
import { data } from './const'



export const Contactcard = () => {


 return(
  <View >
   
     {
        data.map(data=>{
          return(
            <View>
              <Text >{data.name}</Text>
              <Text>{data.number}</Text>
            </View>
          )
        })
     }
    
  </View>
  )
}