components.module.ts 1.1 KB

123456789101112131415161718192021222324252627282930313233343536
  1. import { NgModule } from "@angular/core";
  2. import { FeedComponent } from "./feed/feed";
  3. import { TweetComponent } from "./tweet/tweet";
  4. import { TweetHeaderComponent } from "./tweet-header/tweet-header";
  5. import { TweetBodyComponent } from "./tweet-body/tweet-body";
  6. import { TweetActionsComponent } from "./tweet-actions/tweet-actions";
  7. import { ProfileHeaderComponent } from "./profile-header/profile-header";
  8. import { QuotedStatusComponent } from "./quoted-status/quoted-status";
  9. import { HashtagComponent } from "./hashtag/hashtag";
  10. import { MentionComponent } from "./mention/mention";
  11. @NgModule({
  12. declarations: [
  13. FeedComponent,
  14. TweetComponent,
  15. TweetHeaderComponent,
  16. TweetBodyComponent,
  17. TweetActionsComponent,
  18. ProfileHeaderComponent,
  19. QuotedStatusComponent,
  20. HashtagComponent,
  21. MentionComponent
  22. ],
  23. imports: [],
  24. exports: [
  25. FeedComponent,
  26. TweetComponent,
  27. TweetHeaderComponent,
  28. TweetBodyComponent,
  29. TweetActionsComponent,
  30. ProfileHeaderComponent,
  31. QuotedStatusComponent,
  32. HashtagComponent,
  33. MentionComponent
  34. ]
  35. })
  36. export class ComponentsModule {}