diff --git a/dash_building_blocks/base.py b/dash_building_blocks/base.py index 552a0dd..cd0b728 100644 --- a/dash_building_blocks/base.py +++ b/dash_building_blocks/base.py @@ -9,7 +9,7 @@ """ -import dash_html_components as html +from dash import html from dash.dependencies import Input, Output, State from dash_building_blocks.util import ( generate_random_string, @@ -416,4 +416,4 @@ def state(self, component_id): local to the store. :return: The :class:`dash.dependencies.State` dependency object. """ - return State(*self.get(component_id)) \ No newline at end of file + return State(*self.get(component_id))