i'm using react + typescript and get this error. Parsing error: '{' expected how to fix it?.
here is my code snippet
render() {
console.log(this.state.collection);
return (
<div className='body-container'>
<Container>
{this.collection.items.map(collection => {
<Card>
<Card.Image>
<Image.Container size='3by4'>
<Image src=collection.coverLink />
</Image.Container>
</Card.Image>
</Card>
});
}
</Container>
</div>
);
}
this.collection.items.map(...