Step
Component
Represents the KendoReact Step component.
Definition
Package:@progress/kendo-react-layout
Syntax:
jsx
const steps = [
{ label: 'Step 1' },
{ label: 'Step 2' },
{ label: 'Step 3', optional: true }
];
const App = () => {
return (
<Stepper items={steps} value={1}/>
);
};
Properties
props
Omit<StepProps, "ref"> intersected with RefAttributes<null | StepHandle>
The props of the Step component.