mirror of
https://github.com/kidfromjupiter/nearby.git
synced 2026-09-16 15:36:12 -04:00
17 lines
282 B
C++
17 lines
282 B
C++
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#include "ftxui/dom/elements.hpp"
|
|
|
|
namespace nearby::sharing::linux_tui {
|
|
|
|
struct SidebarState {
|
|
std::string hostname;
|
|
std::string selected_file;
|
|
};
|
|
|
|
ftxui::Element Sidebar(const SidebarState& state);
|
|
|
|
} // namespace nearby::sharing::linux_tui
|