({ ...x, id, database }))} makeAppObj={tableAppObject} />
>
);
}
function SqlObjectListWrapper() {
const db = useCurrentDatabase();
if (!db) return (Choose database)
;
const { name, connection } = db;
return ;
// return tables of {db && db.name}
// return tables of {JSON.stringify(db)}
}
export default function DatabaseWidget() {
return (
);
}