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 45c00f2 commit a3b19eaCopy full SHA for a3b19ea
scene_usage.py
@@ -1,3 +1,13 @@
1
+import dash_mp_components
2
+import dash
3
+from dash.dependencies import Input, Output
4
+import dash_html_components as html
5
+import dash_core_components as dcc
6
+from tests.grid import grid
7
+import functools
8
+from dash.exceptions import PreventUpdate
9
+
10
+#investigate why it does not work
11
app = dash.Dash(__name__)
12
app.layout = html.Div(children=[
13
dash_mp_components.CameraContext(children=[
@@ -459,3 +469,7 @@
459
469
]),
460
470
html.Div(id='selected-object'),
461
471
])
472
473
+# use True to load a dev build of react
474
+if __name__ == '__main__':
475
+ app.run_server(debug=True)
0 commit comments