UNPKG
@kisstar/rc-ui
Version:
latest (0.2.0)
0.2.0
UI component library built with React Hooks.
dongwanhong.gitee.io/rc-ui
kisstar/rc-ui
@kisstar/rc-ui
/
dist
/
components
/
menu
/
MenuContext.js
7 lines
(6 loc)
•
150 B
JavaScript
View Raw
1
2
3
4
5
6
7
import
{ createContext }
from
'react'
;
var
MenuContext
=
createContext
({
mode
:
'horizontal'
,
selectedKey
:
''
, });
export
default
MenuContext
;