const myRow = new ActionRowBuilder()
.addComponents(
<ButtonBuilder>,
...
)
<TextChannel>.send({embeds: [randomEmbed], components: [myRow]});
<TextChannel>.send({components: [ActionRowBuilder.from(myRow)]});
const myRow = new ActionRowBuilder()
.addComponents(
<ButtonBuilder>,
...
)
<TextChannel>.send({embeds: [randomEmbed], components: [myRow]});
<TextChannel>.send({components: [ActionRowBuilder.from(myRow)]});