components.module.ts 924 B

123456789101112131415161718192021222324252627282930
  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. @NgModule({
  10. declarations: [
  11. FeedComponent,
  12. TweetComponent,
  13. TweetHeaderComponent,
  14. TweetBodyComponent,
  15. TweetActionsComponent,
  16. ProfileHeaderComponent,
  17. QuotedStatusComponent
  18. ],
  19. imports: [],
  20. exports: [
  21. FeedComponent,
  22. TweetComponent,
  23. TweetHeaderComponent,
  24. TweetBodyComponent,
  25. TweetActionsComponent,
  26. ProfileHeaderComponent,
  27. QuotedStatusComponent
  28. ]
  29. })
  30. export class ComponentsModule {}