- Source
Example
//Python:
import dash_lumino_components as dlc
import dash_html_components as html
panelA = dlc.Panel(
id="panelA",
children=html.Div("Content"),
label="Test",
icon="fa fa-plus")
panelB = dlc.Panel(
[
html.Div("Content")
],
id="panelB",
label="Test",
icon="fa fa-plus")
Type Definitions
propTypes
PropertiesName | Type | Description |
---|---|---|
id | string | ID of the widget |
label | string | The label of the panel |
icon | string | The icon of the panel (a cass class name) |
addToDom | boolean | bool if the object has to be added to the dom directly |
children | Object | | The widgets |
- Source