New to KendoReact? Learn about KendoReact Free.
Stepper
Represents the KendoReact Stepper component.
jsx
const steps = [
{ label: 'Step 1' },
{ label: 'Step 2' },
{ label: 'Step 3', optional: true }
];
const App = () => {
return (
<Stepper items={steps} value={1} />
);
};
ReactDOM.render(<App />, document.querySelector('my-app'));
Name | Type | Default | Description |
---|---|---|---|
props |
|
The props of the Stepper component. |