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