Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import { NgModule } from "@angular/core";
- import { CommonModule } from "@angular/common";
- import { AdminRoutingModule } from "./admin-routing.module";
- import { AdminComponent } from "./admin.component";
- import { AdminLandingComponent } from './admin-landing/admin-landing.component';
- @NgModule({
- declarations: [
- AdminComponent,
- AdminLandingComponent
- ], imports: [
- CommonModule,
- AdminRoutingModule
- ]
- })
- export class AdminModule {}
Advertisement
Add Comment
Please, Sign In to add comment