Skip to content

Instantly share code, notes, and snippets.

@berkesayin
Created March 18, 2022 16:15
Show Gist options
  • Save berkesayin/6bd7ee9b78d5628ef9f9b10f021a11a1 to your computer and use it in GitHub Desktop.
Save berkesayin/6bd7ee9b78d5628ef9f9b10f021a11a1 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={news.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