Hi I’m trying to create one line with 5 components, unfortunately I don’t understand the way to do it.
I tried the following after reading other topics here, and seeing some examples:
comp = html.Div(
className="row",
children=[
# html.H3('Source for Analysis'),
html.Div(
className='five columns',
children=[
html.H3('Add Local source:')
]
),
html.Div(
className='five columns',
children=[
dcc.Dropdown(
options=[],
value='',
id='1'
)
]
),
html.Div(
className='five columns',
children=[
dcc.Dropdown(
options=[],
value='',
id='2')
]
),
html.Div(
className='five columns',
children=[
dcc.Dropdown(
options=[],
value='',
id='3')
]
),
html.Div(
className='five columns',
children=[
html.Button('ADD', id='ADD_cond', n_clicks_timestamp=0)
]
),
]
)
I get the following:
can someone suggest a solution or\and a good source for understanding how the layout works?
thanks