UNPKG

@douyinfe/semi-ui

Version:

A modern, comprehensive, flexible design system and UI library. Connect DesignOps & DevOps. Quickly build beautiful React apps. Maintained by Douyin-fe team.

14 lines (11 loc) 318 B
import React from 'react'; import { TooltipProps } from '../tooltip/index'; export interface DropdownContextType { level?: number; showTick?: boolean; trigger?: TooltipProps['trigger'] } const DropdownContext = React.createContext<DropdownContextType>({ level: 0, }); export default DropdownContext;