|
@@ -5,19 +5,22 @@ import { TweetHeaderComponent } from './tweet-header/tweet-header';
|
|
|
import { TweetBodyComponent } from './tweet-body/tweet-body';
|
|
|
import { TweetActionsComponent } from './tweet-actions/tweet-actions';
|
|
|
import { ProfileHeaderComponent } from './profile-header/profile-header';
|
|
|
+import { QuotedStatusComponent } from './quoted-status/quoted-status';
|
|
|
@NgModule({
|
|
|
declarations: [FeedComponent,
|
|
|
TweetComponent,
|
|
|
TweetHeaderComponent,
|
|
|
TweetBodyComponent,
|
|
|
TweetActionsComponent,
|
|
|
- ProfileHeaderComponent],
|
|
|
+ ProfileHeaderComponent,
|
|
|
+ QuotedStatusComponent],
|
|
|
imports: [],
|
|
|
exports: [FeedComponent,
|
|
|
TweetComponent,
|
|
|
TweetHeaderComponent,
|
|
|
TweetBodyComponent,
|
|
|
TweetActionsComponent,
|
|
|
- ProfileHeaderComponent]
|
|
|
+ ProfileHeaderComponent,
|
|
|
+ QuotedStatusComponent]
|
|
|
})
|
|
|
export class ComponentsModule {}
|