+ {/* Accounts header with toggle */}
+
+ Accounts
+
+
+
+ {/* Accounts list */}
+ {showAccounts && (
+
+ {accounts.map((account) => (
+
+ {/* Account button */}
+
+
+ {/* Account folders - shown when account is expanded */}
+ {expandedAccount === account.id && (
+
+ {getStandardFolders(account.folders).map((folder) => (
+
+ ))}
+
+ {/* Custom folders */}
+ {getCustomFolders(account.folders).map(folder => (
+
+ ))}
+
+ )}
+
+ ))}
+
+ )}
+
+