Dashboard sipadu mbip
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

DropdownContext.js 284B

1234567891011
  1. import React from 'react';
  2. var DropdownContext = React.createContext({
  3. menuRef: function menuRef() {},
  4. toggleRef: function toggleRef() {},
  5. onToggle: function onToggle() {},
  6. toggleNode: undefined,
  7. alignEnd: null,
  8. show: null,
  9. drop: null
  10. });
  11. export default DropdownContext;