feat/base-app: Merge into main #2

Merged
quadfaselt merged 3 commits from feat/base-app into main 2024-08-29 15:43:35 +00:00
Showing only changes of commit 065c831cde - Show all commits

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)