File size: 346 Bytes
2b4d75c |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 |
# Form / Markup
# Use a #markup component to display formatted content using #HTML.
# #form
# ---
from h2o_wave import site, ui
page = site['/demo']
menu = '''
<ol>
<li>Spam</li>
<li>Ham</li>
<li>Eggs</li>
</ol>
'''
page['example'] = ui.form_card(
box='1 1 2 2',
items=[
ui.markup(content=menu)
]
)
page.save()
|