Files
grid_application/app/app.py
Tobias Quadfasel 065c831cde feat(base-app): Add base dash app file
This commit adds a file that contains a standard 'Hello World'
example of a plotly dash app.
2024-08-29 16:28:21 +02:00

9 lines
143 B
Python

from dash import Dash, html
app = Dash()
app.layout = [html.Div(children="Hello World")]
if __name__ == "__main__":
app.run(debug=True)