File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -484,17 +484,17 @@ class ExampleWizard extends Wizard<ExampleState> {
484484
485485### 2. ` CompositeWizard ` Class
486486
487- This abstract class extends the ` Wizard ` class with an addition method to create and manage state of the nested wizards.
487+ ` CompositeWizard ` extends ` Wizard ` to create and manage a collection of nested/child wizards.
488488
489- Extends this class to create a wizard that contains other wizards as part of the prompter flow.
490- Use ` this.createWizardPrompter() ` to use another wizard class as a prompter in the main wizard .
489+ Extend this class to create a wizard that contains other wizards as part of a prompter flow.
490+ Use ` this.createWizardPrompter() ` to use a wizard as a prompter in the ` CompositeWizard ` .
491491
492492Example:
493493
494494``` ts
495495
496496// Child wizard
497- class ChildWizard extends Wizards <ChildWizardForm > {... }
497+ class ChildWizard extends Wizard <ChildWizardForm > {... }
498498
499499
500500// Composite wizard
You can’t perform that action at this time.
0 commit comments