VideoQuest / src /app /store.ts
Julian Bilcke
new UI
fd2aa6b
"use client"
import { InventoryItem } from "../types"
// could also be Zustand or something
export const store: {
currentlyDraggedItem?: InventoryItem
} = {
currentlyDraggedItem: undefined
}