Spaces:
Sleeping
Sleeping
File size: 233 Bytes
9df974a |
1 2 3 4 5 6 7 8 9 10 11 12 |
from h2o_wave import main, app, Q, ui
@app('/')
async def serve(q: Q):
q.page['hello'] = ui.markdown_card(
box='1 1 4 4',
title='HF Spaces tutorial',
content='Hello World!'
)
await q.page.save()
|