
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
from dash import Dash, html
import dash_bootstrap_components as dbc
app = Dash()
app.config.external_stylesheets = [dbc.themes.DARKLY]
app.layout = html.Div(children=[
html.H1(children='Hello Dash'),
html.Br(),
dbc.Input(id="run-namefield", type="text", placeholder="Run Name"),
html.Br(),
dbc.Select(id='run-relpath-y', placeholder="Select y file")
])
app.run_server(debug=True)