8 lines
133 B
Python
8 lines
133 B
Python
from nicegui import ui
|
|
|
|
test = ('Eintrag 1')
|
|
|
|
ui.markdown(test)
|
|
ui.markdown('Nächstes Element')
|
|
|
|
ui.run(language="de-DE", port=9000) |