6 lines
221 B
JavaScript
6 lines
221 B
JavaScript
import * as React from 'react';
|
|
const DropdownContext = /*#__PURE__*/React.createContext(null);
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
DropdownContext.displayName = 'DropdownContext';
|
|
}
|
|
export { DropdownContext }; |