Spaces:
Runtime error
Runtime error
File size: 196 Bytes
ab75c71 |
1 2 3 4 5 6 7 8 9 10 11 |
"use client"
import { InventoryItem } from "./types"
// could also be Zustand or something
export const store: {
currentlyDraggedItem?: InventoryItem
} = {
currentlyDraggedItem: undefined
}
|