mirror of
https://github.com/ant-design/ant-design.git
synced 2026-02-09 02:49:18 +08:00
10 lines
228 B
TypeScript
10 lines
228 B
TypeScript
import React from 'react';
|
|
|
|
const ZIndexContext = React.createContext<number | undefined>(undefined);
|
|
|
|
if (process.env.NODE_ENV !== 'production') {
|
|
ZIndexContext.displayName = 'ZIndexContext';
|
|
}
|
|
|
|
export default ZIndexContext;
|