//// Basecoat documentation:
////
//// Fast, composable command menu for quick navigation and actions.
////
//// **Note**: This component requires JavaScript from Basecoat.
////
//// ## Anatomy
////
//// A command menu usually includes a search input and a menu of items grouped
//// into sections.
////
//// ## Recipe
////
//// ```gleam
//// import glaze/basecoat/command
//// import lustre/element/html
////
//// fn my_command() {
//// command.command("my-command", [], [
//// command.group("Suggestions", [
//// command.item([], [html.text("Calendar")]),
//// command.item([], [html.text("Search Emoji")]),
//// ]),
//// ])
//// }
//// ```
////
//// ## References
////
//// - MDN ARIA `combobox` role:
//// - MDN ARIA `menu` role:
//// - MDN ARIA `menuitem` role:
//// - MDN `