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.

SelectableContext.js 248B

1234567
  1. import React from 'react';
  2. var SelectableContext = React.createContext();
  3. export var makeEventKey = function makeEventKey(eventKey, href) {
  4. if (eventKey != null) return String(eventKey);
  5. return href || null;
  6. };
  7. export default SelectableContext;