ant-design/.dumi/theme/slots/DemoContext.tsx
2022-11-17 01:22:09 +08:00

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;