> For the complete documentation index, see [llms.txt](https://seveenxp.gitbook.io/lunaris/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://seveenxp.gitbook.io/lunaris/components/createrow.md).

# createRow()

A simple function that facilitates the creation of action row.

```typescript
import { actionRowBuilder } from 'discord.js' // Module ESM
const { actionRowBuilder } = require('discord.js') // Module CommonJS

new ActionRowBuilder<AnyComponentBuilder>({
    components: [
        // components here
    ]
});

// To create a action row using lunaris
import { createRow } from 'lunaris' // Module ESM
const { createRow } = require('lunaris') // Module CommonJS

createRow(
    // components here
);
```

#### Possibles components

{% content-ref url="/pages/9w5BREIQSXXZ88XUBNap" %}
[createButton()](/lunaris/components/createbutton.md)
{% endcontent-ref %}

{% content-ref url="/pages/M8IEi6n4l5AgmRAuEjDH" %}
[createLinkButton()](/lunaris/components/createlinkbutton.md)
{% endcontent-ref %}
