New to KendoReact? Learn about KendoReact Free.
Step
Represents the KendoReact Step 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 Step component. |