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:
8
app/app.py
Normal file
8
app/app.py
Normal 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)
|
||||
Reference in New Issue
Block a user