VideoQuest / src /app /store.ts
jbilcke-hf's picture
jbilcke-hf HF staff
changing the URL again as the public server is being abused by some users
ab75c71
raw
history blame
196 Bytes
"use client"
import { InventoryItem } from "./types"
// could also be Zustand or something
export const store: {
currentlyDraggedItem?: InventoryItem
} = {
currentlyDraggedItem: undefined
}