Skip to content

Instantly share code, notes, and snippets.

@CodingItWrong
Created January 4, 2019 02:43
Show Gist options
  • Select an option

  • Save CodingItWrong/7556900663e982121edd86695a1540af to your computer and use it in GitHub Desktop.

Select an option

Save CodingItWrong/7556900663e982121edd86695a1540af to your computer and use it in GitHub Desktop.
import React from 'react';
import {
FlatList,
Text,
} from 'react-native';
const MessageList = ({ data }) => (
<FlatList
data={data}
keyExtractor={item => item}
renderItem={({ item }) => <Text>{item}</Text>}
/>
);
export default MessageList;
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment