9 lines
179 B
TypeScript
9 lines
179 B
TypeScript
import React from 'react'
|
|
|
|
import type {ContextType} from '#/components/Menu/types'
|
|
|
|
export const Context = React.createContext<ContextType>({
|
|
// @ts-ignore
|
|
control: null,
|
|
})
|