Skip to content

Instantly share code, notes, and snippets.

@berkesayin
Last active June 27, 2022 14:22
Show Gist options
  • Save berkesayin/02dcf79c6f897c8ab42c15a1af219896 to your computer and use it in GitHub Desktop.
Save berkesayin/02dcf79c6f897c8ab42c15a1af219896 to your computer and use it in GitHub Desktop.
Key
import { Component } from "react";
class Tweet extends Component {
render() {
return (
<div>
{this.props.tweet.map(tweet =>
<div key={tweet.tweet_id}>
{tweet.tweet_topic}
<br />
{tweet.tweet_detail}
</div>
)}
</div>
)
}
}
export default Tweet
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment