Gramjs button example
unknown
typescript
3 years ago
289 B
42
Indexable
const options = ["About Me", "Help", "Close"];
const messageWithButton = await bot.sendMessage(chatId, {
message: "Please select one option",
buttons: bot.buildReplyMarkup(
options.map((option) => {
return [Button.inline(option, `callback data ${option}`)];
})
),
});
Editor is loading...