UNPKG

@shinyongjun/react-datepicker

Version:
9 lines (8 loc) 263 B
import { ReactNode } from 'react'; interface IProps { condition: boolean; wrapper: (children: ReactNode) => ReactNode; children: ReactNode; } export default function ConditionalWrapper({ condition, wrapper, children, }: IProps): ReactNode; export {};