Interface for defining a page/step in a multi-step form or wizard
Properties:
| Name | Type | Attributes | Description |
|---|---|---|---|
title |
string
|
<optional> |
Optional title for the page/step (e.g., "Personal Information") |
description |
string
|
<optional> |
Optional description providing additional context for the page |
Example
// Define pages for a multi-step wizard
const wizardPages: IPagedComponentProperties[] = [
{ title: 'Personal Info', description: 'Enter your basic details' },
{ title: 'Contact', description: 'Provide your contact information' },
{ title: 'Review', description: 'Review and confirm your information' }
];