tweet.html 330 B

123456
  1. <ion-item text-wrap [class.private]="data.private_tweet">
  2. <p *ngIf="data.retweeted_status" class="retweet-info">{{ data.user.name }} has retweeted:</p>
  3. <tweet-header [user]="user" [tweetCreatedAt]="createdAt"></tweet-header>
  4. <tweet-body [data]="data"></tweet-body>
  5. <tweet-actions [data]="data"></tweet-actions>
  6. </ion-item>