UNPKG

@fruits-chain/react-native-xiaoshu

Version:
11 lines (7 loc) • 335 B
import { useContext, createContext } from 'react' import type { DropdownContext } from './interface' export const DropdownConfig = createContext<DropdownContext>( // eslint-disable-next-line @typescript-eslint/consistent-type-assertions {} as DropdownContext, ) export const useDropdownConfig = () => useContext(DropdownConfig)