import { KeenIcon } from '@/components'; import { toAbsoluteUrl } from '@/utils/Assets'; interface INFTProps { image: string; title: string; id: number; info: string; date: string; } const CardNFT = ({ image, id, title, info, date }: INFTProps) => { return (
{title}
Token ID: {id}
Current bid
{info}
Ending in {date}
); }; export { CardNFT, type INFTProps };