Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions examples/hello-world/schema.json
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,13 @@
{
"type": "Page",
"type": "page",
"title": "Hello ObjectUI",
"children": [
{
"type": "Card",
"type": "card",
"children": [
{ "type": "Text", "content": "Welcome to ObjectUI!" },
{ "type": "Text", "content": "This UI is rendered from a JSON schema." },
{ "type": "Button", "content": "Get Started", "variant": "default" }
{ "type": "text", "content": "Welcome to ObjectUI!" },
{ "type": "text", "content": "This UI is rendered from a JSON schema." },
{ "type": "button", "content": "Get Started", "variant": "default" }
]
}
]
Expand Down
Loading