import React from 'react'; import { Wizard as WizardDeprecated } from '@breakaway/preact-core/deprecated'; export const WizardBasicWithDisabledSteps: React.FunctionComponent = () => { const steps = [ { name: 'First step', component:
Step 1 content
}, { name: 'Second step', component:Step 2 content
, isDisabled: true }, { name: 'Third step', component:Step 3 content
}, { name: 'Fourth step', component:Step 4 content
, isDisabled: true }, { name: 'Review', component:Review step content
, nextButtonText: 'Finish' } ]; const title = 'Basic wizard with disabled steps example'; return (