// DragonX Wallet - ImGui Edition // Copyright 2024-2026 The Hush Developers // Released under the GPLv3 #pragma once namespace dragonx { class App; namespace ui { /** * @brief Render the Contacts tab (the address book, promoted out of Settings). * * Doubles as the future chat roster. Reads/writes the App-owned AddressBook * (App::addressBook()). Renders inline in the main content area; the add/edit * form is a modal popup layered over the tab. * * @param app Pointer to the app instance. */ void RenderContactsTab(App* app); } // namespace ui } // namespace dragonx