Message Components
The building block of all message components is the ActionRow
component.
It wraps all the other components and exists exactly just for that reason.
All of the components have all the properties that Discord allows, and they are really simple to use.
Discord reference: Message Components
Buttons
Buttons are the simplest and most used component type, and Lilybird makes their usage even more trivial.
Link Buttons
Like the Discord docs say, a link button cannot have a custom_id
so instead we use the url
property.
Select Menus
Select menus with components are just as easy to use and they are named as <type>SelectMenu
.
Modals
Modals might seem more daunting at first sight, but they are really simple, especially when using JSX components for them.