Files
grid_application/app/app.py
2024-08-29 17:34:04 +02:00

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)