score:2

if when you call the api it returns the url they are hosted on your s3 you can use them with a simple src attribute of the img tag. let say you get from your api a response like this:

[
    {
        url: 'some url',
        name: 'some name
    },
    {
        url: 'some url',
        name: 'some name
    },
]

you could store the data you got from the api in a state:

apicall()
    .then((response) => this.setstate({ images: response );

then you could map throw this array in the render:

render() {
    return (
        <div>
            {
                images.map((image) => <img src={image.url} />)
            }
        </div>
    )
}

Related Query

More Query from same tag