IWizardStep
interface IWizardStep {
onNext?: () => string | null;
id: string;
title: string;
render: (props: IWizardStepProps) => React.ReactNode;
}Usage
import {IWizardStep} from 'uxp/components';Last updated
interface IWizardStep {
onNext?: () => string | null;
id: string;
title: string;
render: (props: IWizardStepProps) => React.ReactNode;
}import {IWizardStep} from 'uxp/components';Last updated