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({ onClick, onDragEnter, onDragOver, onDragStart, onDrop, qty = 1, source, }) { const image = source + '/icon.png'; return ( ); }