Files
TestMesa/backend/frontend/node_modules/@restart/ui/esm/SelectableContext.js
2024-12-17 13:23:11 -08:00

7 lines
263 B
JavaScript

import * as React from 'react';
const SelectableContext = /*#__PURE__*/React.createContext(null);
export const makeEventKey = (eventKey, href = null) => {
if (eventKey != null) return String(eventKey);
return href || null;
};
export default SelectableContext;