Row - shysolocup/noscord.js GitHub Wiki
creates a new raw action row
type: AeplSubClass
let top = new Row([
new Button({ id: "answer_a", label: "A", style: "primary" }),
new Button({ id: "answer_b", label: "B", style: "primary" }),
]);
let bottom = new Row([
new Button({ id: "answer_c", label: "C", style: "primary" }),
new Button({ id: "answer_d", label: "D", style: "primary" }),
]);
message.reply({ components: [top, bottom] });