import React from 'react'; import Card, { CardBorderRadius } from './Card'; import { VStack, Text, Image } from 'native-base'; type ArtistCardProps = { image?: string; name: string; id: number; onPress: () => void; }; const ArtistCard = (props: ArtistCardProps) => { const { image, name } = props; return ( {name} {name} ); }; export default ArtistCard;