A navigation component that organizes content into separate panels, allowing users to switch between views with clickable tab labels.
| Property | Description | Type |
|---|---|---|
tabs | Determines the list of tabs with specific labels and IDs. | { id: string, label: string }[] |
onClick | Provides a callback function to set the selected tab when a tab is clicked. | (id: string) => string |
selected | Provides the current selected tab. | string |
id | Provides the id to the Tab component that matches with the id in the list of tabs. | string |