UNPKG

@xyo-network/react-shared

Version:

Common React library for all XYO projects that use React

10 lines (7 loc) 208 B
import type { PropsWithChildren } from 'react' export type EmptyObject = {} export type ContextExProviderProps<T extends EmptyObject = EmptyObject> = PropsWithChildren< { required?: boolean } & T >