wip: more rework and docs

This commit is contained in:
2026-02-26 11:01:17 +01:00
parent affd62ca79
commit 00a9d22a36
18 changed files with 149 additions and 226 deletions

View File

@@ -11,7 +11,7 @@ interface A2UIComponentProps {
export const A2UITable: React.FC<A2UIComponentProps> = ({ component }) => {
const columns = (component.properties.columns as string[]) ?? [];
const rows = (component.boundValue as string[][]) ?? [];
const rows = (component.boundValue as string[][]) ?? (component.properties.rows as string[][]) ?? [];
const title = component.properties.title as string | undefined;
return (