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 41dcef3 commit d82b908Copy full SHA for d82b908
src/chime_dash/__init__.py
@@ -8,7 +8,7 @@
8
from typing import TypeVar
9
from chime_dash.app.config import from_object
10
from penn_chime.settings import get_defaults
11
-from chime_dash.app.components import Body
+from chime_dash.app.pages.root import Root
12
from chime_dash.app.utils.callbacks import wrap_callbacks
13
14
DashAppInstance = TypeVar('DashAppInstance')
@@ -32,7 +32,7 @@ def create_app(context: str = 'prod') -> DashAppInstance:
32
Env = from_object(context)
33
34
LANGUAGE = Env.LANG
35
- body = Body(LANGUAGE, DEFAULTS)
+ body = Root(LANGUAGE, DEFAULTS)
36
37
38
App = Dash(
0 commit comments