aboutsummaryrefslogtreecommitdiffstats
path: root/src/angular/checklist/checklist.module.ts
blob: 013bf9b5fcace946e47a95292977b660a88c52c9 (plain)
1
2
3
4
5
6
7
8
9
10
11
import { NgModule } from "@angular/core";
import { ChecklistComponent } from "./checklist.component";
import { CommonModule } from "@angular/common";
import { FormElementsModule } from "../form-elements/form-elements.module";

@NgModule({
    declarations: [ChecklistComponent],
    exports: [ChecklistComponent],
    imports: [CommonModule, FormElementsModule]
})
export class ChecklistModule {}