getComponentsProps
Retrieve props information for multiple Storybook components to understand their configuration options and usage requirements.
Instructions
Get props information for multiple components
Input Schema
Name | Required | Description | Default |
---|---|---|---|
componentNames | Yes | Array of component names to get props information for |
Input Schema (JSON Schema)
{
"properties": {
"componentNames": {
"description": "Array of component names to get props information for",
"items": {
"type": "string"
},
"type": "array"
}
},
"required": [
"componentNames"
],
"type": "object"
}