mirror of
https://github.com/utopia-os/utopia-ui.git
synced 2025-12-13 07:46:10 +00:00
8 lines
171 B
TypeScript
8 lines
171 B
TypeScript
import { createContext } from 'react'
|
|
|
|
import type { Item } from '#types/Item'
|
|
|
|
const ItemContext = createContext<Item | undefined>(undefined)
|
|
|
|
export default ItemContext
|