Dashboard sipadu mbip
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

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;