I have a large-scale bokeh application and would like to integrate the panel.indicator.Progress object. Have tried the following -
from bokeh.layouts import column
import panel as pn
pn.extension()
progress = pn.indicators.Progress()
layout = column(progress)
and received
ValueError: Only LayoutDOM items can be inserted into a column. Tried to insert: Progress() of type <class 'panel.widgets.indicators.Progress'>
So is there any simple way to integrate the Progress object in an existing bokeh application? Thank you!