6 lines
91 B
Python
6 lines
91 B
Python
import panel as pn
|
|
app = pn.Column("DDD")
|
|
# app.servable()
|
|
# app.append("Nice")
|
|
app.show()
|