Guest User

admin.module.ts

a guest
Feb 27th, 2018
171
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.48 KB | None | 0 0
  1. import { NgModule } from "@angular/core";
  2. import { CommonModule } from "@angular/common";
  3.  
  4. import { AdminRoutingModule } from "./admin-routing.module";
  5. import { AdminComponent } from "./admin.component";
  6. import { AdminLandingComponent } from './admin-landing/admin-landing.component';
  7.  
  8. @NgModule({
  9. declarations: [
  10. AdminComponent,
  11. AdminLandingComponent
  12. ], imports: [
  13. CommonModule,
  14. AdminRoutingModule
  15. ]
  16. })
  17. export class AdminModule {}
Advertisement
Add Comment
Please, Sign In to add comment