15 lines
395 B
TypeScript
15 lines
395 B
TypeScript
import {CUSTOM_ELEMENTS_SCHEMA, NgModule} from '@angular/core';
|
|
import {RouterModule} from '@angular/router';
|
|
import {AdminComponent} from './admin.component/admin.component';
|
|
import {adminRouting} from './admin.routing';
|
|
|
|
@NgModule({
|
|
declarations: [
|
|
|
|
],
|
|
imports: [adminRouting, AdminComponent],
|
|
exports: [RouterModule],
|
|
schemas:[CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class AdminModule {}
|