import { HStack, Image, Text } from "native-base"; import Song, { SongWithArtist } from "../models/Song"; import RowCustom from "./RowCustom"; import TextButton from "./TextButton"; type SongRowProps = { song: Song | SongWithArtist; // TODO: remove Song onPress: () => void; }; const SongRow = ({ song, onPress }: SongRowProps) => { return ( {song.name} {song.name} {song.artistId ?? "artist"} ); }; export default SongRow;