import styles from './slot.module.css'; /** * An inventory slot. Displays an item image and the quantity of the item if > 1. */ export default function Slot({image, onClick, qty = 1}) { return (
{qty > 1 && ( {qty} )}
); }