Copy
Ask AI
{
"type": "object",
"properties": {
"type": {
"const": "Pages",
"default": "Pages",
"type": "string"
},
"cssClass": {
"type": [
"string",
"null"
],
"default": null,
"description": "CSS/Tailwind classes for styling"
},
"children": {
"type": "array",
"items": {
"$ref": "Component"
}
},
"defaultValue": {
"type": [
"string",
"null"
],
"default": null,
"description": "Initially active page value"
},
"name": {
"type": [
"string",
"null"
],
"default": null,
"description": "State key for tracking the active page"
}
},
"required": [
"type"
]
}