import React from "react"; import { ScrollView, View, Text, TouchableOpacity, ImageBackground, FlatList, } from "react-native"; import { CardItem, Icon } from "../components"; import DEMO from "../assets/data/demo"; import styles, { DARK_GRAY } from "../assets/styles"; const Matches = () => ( Matches index.toString()} renderItem={({ item }) => ( )} /> ); export default Matches;