I am trying to make an interface using the somewhat new Container functionality. Afaik, Miru doesn't support it (yet?), so I am building the Containers with raw Hikari.
hikari.impl.SectionComponentBuilder(
accessory=hikari.impl.InteractiveButtonBuilder(
style=hikari.ButtonStyle.SECONDARY,
label="✏️",
custom_id="banner_edit_base",
),
components=[
hikari.impl.TextDisplayComponentBuilder(content="Base"),
]
),
How do I create a view for this button to handle a user clicking it? Or maybe should I approach making this interface differently?
