Skip to content

archaeo_super_prompt.visualization.types

[docs] module archaeo_super_prompt.visualization.types

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
from collections.abc import Callable
from dash.development.base_component import Component
from dash import Dash


DashComponent = tuple[list[Component], Callable[[Dash], None]]
"""A couple of elements with
- a list of children to be added in a div or a layout
- a callable function which initiate the callbacks and any route creation
"""