From 83eb9c327bae93d4e415d47cb83e441909e7b175 Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Wed, 24 Nov 2021 06:04:02 +0100 Subject: [PATCH] Feat: import html for 404 layout --- recopytex/dashboard/routes.py | 1 + 1 file changed, 1 insertion(+) diff --git a/recopytex/dashboard/routes.py b/recopytex/dashboard/routes.py index 77e1642..44c58bc 100644 --- a/recopytex/dashboard/routes.py +++ b/recopytex/dashboard/routes.py @@ -6,6 +6,7 @@ from dash.dependencies import Input, Output from .app import app from .pages.home import app as home from .pages.exams_scores import app as exams_scores +import dash_html_components as html @app.callback(Output("page-content", "children"), [Input("url", "pathname")])