route | menu |
---|---|
/components/button-list |
Components |
import { Playground, Props } from 'docz'; import { ButtonList } from './ButtonList.tsx';
Display a list of buttons, a tyical usecase is allowing the user to select an option among a list. It is usually used in pair with some Button
<mml>
<button_list>
<button name="side" value="yes">
Yes!
</button>
<button name="side" value="no">
No, thanks
</button>
</button_list>
</mml>