aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/tag-cloud/tag-cloud.module.ts
blob: fd7efb419f38bd7d484c3043beaa5ac58d5ada1a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
import { NgModule } from "@angular/core";
import { TagItemComponent } from "./tag-item/tag-item.component";
import { TagCloudComponent } from "./tag-cloud.component";
import { CommonModule } from "@angular/common";
import { FormElementsModule } from './../form-elements/form-elements.module';

@NgModule({
    declarations: [
        TagItemComponent,
        TagCloudComponent
    ],
    imports: [
        CommonModule,
        FormElementsModule
    ],
    exports: [
        TagCloudComponent
    ]
})
export class TagCloudModule {
}