const select = new StringSelectMenuBuilder()
.setCustomId('Select')
.setPlaceholder('Make a selection!')
.addOptions(
new StringSelectMenuOptionBuilder()
.setLabel('hmm')
.setValue('wassup')
)
const row = new ActionRowBuilder()
.addComponents(select);
return message.channel.send('hi', {components: [row]})
const select = new StringSelectMenuBuilder()
.setCustomId('Select')
.setPlaceholder('Make a selection!')
.addOptions(
new StringSelectMenuOptionBuilder()
.setLabel('hmm')
.setValue('wassup')
)
const row = new ActionRowBuilder()
.addComponents(select);
return message.channel.send('hi', {components: [row]})