mirror of
https://gitee.com/ant-design/ant-design.git
synced 2024-11-30 02:59:04 +08:00
13 lines
243 B
TypeScript
13 lines
243 B
TypeScript
import { createContext } from 'react';
|
|
|
|
export type DemoContextProps = {
|
|
showDebug?: boolean;
|
|
};
|
|
|
|
const DemoContext = createContext<{
|
|
showDebug?: boolean;
|
|
setShowDebug?: (showDebug: boolean) => void;
|
|
}>({});
|
|
|
|
export default DemoContext;
|