import { Game } from "@/app/games/types" import { DraggableItem } from "./draggable-item" import { OnInventoryEvent } from "@/types" import { cn } from "@/lib/utils"; export function Inventory({ className = "", game, isLoading, onEvent }: { className?: string; game: Game; isLoading: boolean; onEvent: OnInventoryEvent; }) { return (
{game.inventory.map(item => ( ))}
) }