11 lines
164 B
Python
11 lines
164 B
Python
from dash import Dash, html
|
|
|
|
app = Dash()
|
|
|
|
app.layout = [html.Div(children="Hello World")]
|
|
|
|
server = app.server
|
|
|
|
if __name__ == "__main__":
|
|
app.run(debug=True)
|