blob: 9fc91f68153cc8715ceb2bcfb2dc9cfea3d34b08 (
plain) (
blame)
1
2
3
4
5
6
7
8
|
import React from 'react'
import type {ContextType} from '#/components/Menu/types'
export const Context = React.createContext<ContextType>({
// @ts-ignore
control: null,
})
|