testing / app.py
amit-asl
interesting
e401693
raw
history blame contribute delete
436 Bytes
from nicegui import ui, app
with ui.column():
with ui.row():
with ui.column():
ui.label("1")
ui.label("2")
with ui.column():
ui.label("3")
ui.label("4")
with ui.row():
with ui.column():
ui.label("11")
ui.label("22")
with ui.column():
ui.label("33")
ui.label("44")
ui.run(host="0.0.0.0", port=7860)