6 lines
217 B
JavaScript
6 lines
217 B
JavaScript
import React from 'react';
|
|
const zIndexContext = /*#__PURE__*/React.createContext(undefined);
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
zIndexContext.displayName = 'zIndexContext';
|
|
}
|
|
export default zIndexContext; |