mirror of
https://github.com/ant-design/ant-design.git
synced 2024-11-28 13:09:40 +08:00
ba999de764
* format: site code format * Conflicting * lint * rename
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;
|