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.
2 parents aae423f + 06bba66 commit 3c0ccdeCopy full SHA for 3c0ccde
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