tweet-actions.ts 373 B

123456789101112131415161718
  1. import { Component, Input } from "@angular/core";
  2. /**
  3. * Generated class for the TweetActionsComponent component.
  4. *
  5. * See https://angular.io/api/core/Component for more info on Angular
  6. * Components.
  7. */
  8. @Component({
  9. selector: "tweet-actions",
  10. templateUrl: "tweet-actions.html"
  11. })
  12. export class TweetActionsComponent {
  13. @Input()
  14. data: any[];
  15. constructor() {}
  16. }