get_component_demo
Generate practical demo code for using shadcn/ui v4 components by specifying the component name, aiding in correct implementation and integration.
Instructions
Get demo code illustrating how a shadcn/ui v4 component should be used
Input Schema
Name | Required | Description | Default |
---|---|---|---|
componentName | Yes | Name of the shadcn/ui component (e.g., "accordion", "button") |
Input Schema (JSON Schema)
{
"properties": {
"componentName": {
"description": "Name of the shadcn/ui component (e.g., \"accordion\", \"button\")",
"type": "string"
}
},
"required": [
"componentName"
],
"type": "object"
}