VideoQuest / src /app /store.ts
jbilcke-hf's picture
jbilcke-hf HF staff
new UI
fd2aa6b
raw
history blame contribute delete
197 Bytes
"use client"
import { InventoryItem } from "../types"
// could also be Zustand or something
export const store: {
currentlyDraggedItem?: InventoryItem
} = {
currentlyDraggedItem: undefined
}