Spaces:
Sleeping
Sleeping
Update app.py
Browse files
app.py
CHANGED
@@ -2,7 +2,11 @@ from dash import Dash, html, dcc, callback, Output, Input
|
|
2 |
|
3 |
import dash_bootstrap_components as dbc
|
4 |
|
|
|
5 |
|
6 |
-
|
7 |
-
|
|
|
|
|
|
|
8 |
|
|
|
2 |
|
3 |
import dash_bootstrap_components as dbc
|
4 |
|
5 |
+
APP_TITLE = "Demo App"
|
6 |
|
7 |
+
app = Dash(__name__,
|
8 |
+
title=APP_TITLE,
|
9 |
+
update_title='Loading...',
|
10 |
+
suppress_callback_exceptions=True,
|
11 |
+
external_stylesheets=[dbc.themes.FLATLY])
|
12 |
|