We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The pattern I am using is different. I am holding the array object in state. Close, but I am not sure how exactly to do this.
return this.state.data.length > 1 ? this.state.data.map((item) => ( <Card key={item.sku} > <CardImg src={item.image} /> <CardTitle> {item.sku} </CardTitle> <CardBody> {item.name} </CardBody> </Card> )) : null }
And I am using it by calling the function (not a parameter).
<Row className="grid" > {this.renderData()} </Row> </Container>```
The text was updated successfully, but these errors were encountered:
I'm not sure what your question is sorry. Can you provide more context please?
Sorry, something went wrong.
No branches or pull requests
The pattern I am using is different. I am holding the array object in state. Close, but I am not sure how exactly to do this.
And I am using it by calling the function (not a parameter).
The text was updated successfully, but these errors were encountered: