We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c2f2584 commit 7120002Copy full SHA for 7120002
doc/what_about_dash.md
@@ -15,11 +15,9 @@ fig = go.Figure() # or any Plotly Express function e.g. px.bar(...)
15
# fig.add_trace( ... )
16
# fig.update_layout( ... )
17
18
-import dash
19
-import dash_core_components as dcc
20
-import dash_html_components as html
+from dash import Dash, dcc, html
21
22
-app = dash.Dash()
+app = Dash()
23
app.layout = html.Div([
24
dcc.Graph(figure=fig)
25
])
0 commit comments