import React from 'react'; import { MdInfoOutline } from 'react-icons/md'; import { formatAuthors } from '@/utils/book'; interface BookCardProps { cover: string; title: string; author: string; } const BookCard: React.FC = ({ cover, title, author }) => { return (
Book cover

{title}

{formatAuthors(author)}

); }; export default BookCard;