UNPKG

apt-maintenance-account

Version:

Apartment Maintenance Account Tracking Application - Client Side in Angular

26 lines (20 loc) 577 B
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { FormsModule } from '@angular/forms'; import { UserProfileRoutingModule } from './routing.module'; import { UserProfileComponent } from './component'; import { UserProfileService } from './service'; @NgModule({ imports: [ CommonModule, FormsModule, UserProfileRoutingModule ], declarations: [ UserProfileComponent ], providers: [ UserProfileService ] }) export class UserProfileModule { }