import { Show, type Component } from "solid-js"; import { Author } from "../types/types"; import { Card } from "solid-bootstrap"; const AuthorCard: Component<{ author: Author }> = (props: { author: Author; }) => { return (
?
{props.author.name} {props.author.bookCount} books
); }; export default AuthorCard;