Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR SHELL

dash bootstrap import

import dash
import dash_bootstrap_components as dbc

app = dash.Dash(
    external_stylesheets=[dbc.themes.BOOTSTRAP]
)

app.layout = dbc.Alert(
    "Hello, Bootstrap!", className="m-5"
)

if __name__ == "__main__":
    app.run_server()
Source by dash-bootstrap-components.opensource.faculty.ai #
 
PREVIOUS NEXT
Tagged: #dash #bootstrap #import
ADD COMMENT
Topic
Name
1+5 =