-
-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathblog-post.module.ts
44 lines (42 loc) · 1.45 KB
/
blog-post.module.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { ComingSoonModule } from '@components/coming-soon/coming-soon.module';
import { CommonModule } from '@angular/common';
import { NgModule } from '@angular/core';
import { ScullyLibModule } from '@scullyio/ng-lib';
import { BlogPostComponent } from './blog-post.component';
import { ComponentsModule } from '@components/components.module';
import { NewsletterSignupModule } from '@components/newsletter-signup/newsletter-signup.module';
import { BreadcrumbModule } from '@components/breadcrumb/breadcrumb.module';
import { ArticleModule } from '@components/article/article.module';
import {
TableOfContentsModule,
NizInlineSvgModule,
NizChipModule,
} from '@notiz/ngx-design';
import { CommentsModule } from '@components/comments/comments.module';
import { AuthorCardModule } from '@components/author/author.module';
import { RouterModule } from '@angular/router';
import { PipesModule } from '@pipes/pipes.module';
import { SeoModule } from '@components/seo/seo.module';
import { ShortcodeModule } from '@garygrossgarten/shortcodes';
@NgModule({
declarations: [BlogPostComponent],
imports: [
CommonModule,
ScullyLibModule,
ComponentsModule,
NewsletterSignupModule,
BreadcrumbModule,
ArticleModule,
TableOfContentsModule,
CommentsModule,
ComingSoonModule,
AuthorCardModule,
RouterModule,
NizInlineSvgModule,
NizChipModule,
PipesModule,
SeoModule,
ShortcodeModule
],
})
export class BlogPostModule {}