This commit adds a file that contains a standard 'Hello World' example of a plotly dash app.
9 lines
143 B
Python
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)
|