UNPKG

react-dynamic-stepper

Version:

Advanced and multi-feature react stepper component designed to be incredibly versatile for a variety of workflows and use cases.

9 lines (8 loc) 260 B
import { FC, PropsWithChildren } from 'react'; interface ConditionalWrapperInterface { initialWrapper: any; condition: boolean; wrapper: any; } export declare const ConditionalWrapper: FC<PropsWithChildren<ConditionalWrapperInterface>>; export {};