Skip to content
Edmund edited this page Sep 12, 2018 · 9 revisions

This is an extension of the <Component> component

<Group>
    <Module name='button'>Button</Module>
    <Module name='button'>Button</Module>
    <Module name='button'>Button</Module>
</Group>
Output

Tip: if the name property of a Module is a valid HTML tag, then it will render as that tag

<div class="button_group">
    <button class="button">Button</button>
    <button class="button">Button</button>
    <button class="button">Button</button>
</div>
Clone this wiki locally