1import React from 'react' 2 3import type {ContextType, ItemContextType} from '#/components/Menu/types' 4 5export const Context = React.createContext<ContextType>({ 6 // @ts-ignore 7 control: null, 8}) 9 10export const ItemContext = React.createContext<ItemContextType>({ 11 disabled: false, 12})