// // Menu.swift // TermKitBackend // // Created by david-swift on 07.07.2024. // import TermKit /// A menu is an item of a ``MenuBar``. public struct Menu: Renderable { /// The menu's label, displayed in the menu bar. var label: String /// The content of the menu. var content: [Button] /// Initialize a menu. /// - Parameters: /// - label: The menu's label, displayed in the menu bar. /// - content: The content of the menu. public init(_ label: String, @Builder