9 lines
193 B
Python
9 lines
193 B
Python
|
|
import dash
|
|
import dash_bootstrap_components as dbc
|
|
|
|
app = dash.Dash(__name__, external_stylesheets = [ dbc.themes.LUX ])
|
|
app.title = "anisotropy"
|
|
app.config.update(
|
|
update_title = None
|
|
) |