UNPKG

zent

Version:

一套前端设计语言和基于React的实现

10 lines (7 loc) 231 B
import { ReactNode, createContext } from 'react'; export interface IInputContext { renderInner: null | ((children: ReactNode) => ReactNode); } export const InputContext = createContext<IInputContext>({ renderInner: null, });