UNPKG

@moderntribe/wme

Version:

Components and hooks to build the best UX/UI admin wizards

9 lines (8 loc) 232 B
import React from 'react'; interface ConditionalWrapperProps { condition: boolean; wrapper: any; children?: React.ReactNode; } export declare const ConditionalWrapper: (props: ConditionalWrapperProps) => any; export {};