function tablesOf()

in src/core/DrawerItems.tsx [173:181]


  function tablesOf(ledger: LedgerInfo) {
    const tables = ledger.tables;
    if (tables) {
      return tables
        .filter((t) => showInactive || t.status == "ACTIVE")
        .map((t) => tableTreeItem(t));
    }
    return <></>;
  }