I'm doing this to display multiple images with dash but it clearly isn't working as it only displays one image.
for i in images:
app.layout = html.Div([
html.Div([
html.A([
html.Img(
src=app.get_asset_url(i),
style={
'height' : '40%',
'width' : '40%',
'float' : 'left',
'position' : 'relative',
'padding-top' : 0,
'padding-right' : 0
}
)
], href='https://www.google.com'),
])
])
What could be the easiest way to do this. Take into account these are images not plots.