Я новичок в React js и создаю небольшой проект для него, и я хочу добавить ключ к моему div. Как я могу добавить ключ для каждого изображения?
class Image extends Component {
constructor() {
super();
this.state = { images: [] };
}
componentDidMount() {
let promise = apiGateway.getImages();
if (promise != null) {
promise.then((value) => {
Promise.all(value).then((images) => {
this.setState({ images: images});
});
});
}
}
renderimage(value){
return(
<div key={}>
<img className='image' src={value.data} width='100' height='100' alt='nature'/>
</div>
);
}
render() {
return(
<div>
<div>{
this.state.images.map((image)=>{
return this.renderimage(image);
})
}
</div>
</div>
);
}
}
export default Image;