import { createContext } from 'react' import type { Item } from '#types/Item' const ItemContext = createContext(undefined) export default ItemContext