{/* Accounts header with toggle */}
Accounts
{isLoading && }
{/* Mail account with toggle arrow */}
{/* Folders list - shown only when showFolders is true */}
{showFolders && (
{visibleStandardFolders.map((folder) => (
))}
{/* Custom folders section */}
{customFolders.length > 0 && (
<>
{customFolders.map(folder => (
))}
>
)}
)}