compose_components
Combine multiple its-just-ui React components into cohesive layouts using vertical, horizontal, or grid arrangements. Simplify UI composition for enhanced design workflows.
Instructions
Create a composition of multiple its-just-ui components
Input Schema
Name | Required | Description | Default |
---|---|---|---|
components | Yes | ||
layout | No | Layout for composition |
Input Schema (JSON Schema)
{
"properties": {
"components": {
"items": {
"properties": {
"children": {
"type": "string"
},
"props": {
"type": "object"
},
"type": {
"type": "string"
}
},
"required": [
"type"
],
"type": "object"
},
"type": "array"
},
"layout": {
"description": "Layout for composition",
"enum": [
"vertical",
"horizontal",
"grid"
],
"type": "string"
}
},
"required": [
"components"
],
"type": "object"
}