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.
This commit is contained in:
Tobias Quadfasel
2024-08-29 16:28:21 +02:00
parent b307b8327a
commit 065c831cde

8
app/app.py Normal file
View File

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