Untitled
unknown
plain_text
2 years ago
425 B
11
Indexable
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>
)
}
Editor is loading...