17 lines
645 B
TypeScript
17 lines
645 B
TypeScript
|
import {NgModule} from "@angular/core";
|
||
|
import {NotifyFormComponent} from "./notify-form.component";
|
||
|
import {CommonModule} from "@angular/common";
|
||
|
import {MatCheckboxModule} from "@angular/material/checkbox";
|
||
|
import {ReactiveFormsModule} from "@angular/forms";
|
||
|
import {InputModule} from "../../sharedComponents/input/input.module";
|
||
|
import {NotificationUserModule} from "../notification-user/notification-user.module";
|
||
|
|
||
|
@NgModule({
|
||
|
imports: [CommonModule, MatCheckboxModule, ReactiveFormsModule, InputModule, NotificationUserModule],
|
||
|
declarations: [NotifyFormComponent],
|
||
|
exports: [NotifyFormComponent]
|
||
|
})
|
||
|
export class NotifyFormModule {
|
||
|
|
||
|
}
|