Stepper
Component
Represents the KendoReact Stepper 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
StepperProps intersected with RefAttributes<null | StepperHandle>
The props of the Stepper component.