import { Card } from "react-bootstrap"; import type Item from "~/Models/Item"; interface Props { item: Item; } const ItemCard = ({ item }: Props) => { return ( {item.name} ); } export default ItemCard;