I want to print keys and values inside jsx of react native, I get keys but also I want value simultaneously for that particular key.
{
  Object.keys(Data).map((key, index) => {
    return (
      <View style= {{ flexDirection: 'row' }}>
        <View>
          <Text>{ key }</Text>
        </View>
      </View>
    )
  })
}
 
    