import { FlatList } from 'react-native';
import { List, ListItem, Card } from '../components'
id: 'bd7acbea-c1b1-46c2-aed5-3ad53abb28ba',
content: 'Today we are going to provide you with excellent articles to read in December. Enjoy fresh ideas, tips, and tricks from the JavaScript world.',
id: '3ac68afc-c605-48d3-a4f8-fbd91aa97f63',
content: 'Today we are going to provide you with excellent articles to read in December. Enjoy fresh ideas, tips, and tricks from the JavaScript world.',
id: '58694a0f-3da1-471f-bd96-145571e29d72',
content: 'Today we are going to provide you with excellent articles to read in December. Enjoy fresh ideas, tips, and tricks from the JavaScript world.',
const renderItem = ({ item }) => (
<Card title={item.title}>{item.content}</Card>
keyExtractor={item => item.id}