18 lines
460 B
TypeScript
18 lines
460 B
TypeScript
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core';
|
|
|
|
import { ProfileComponent } from './profile.component';
|
|
import { ProfileResolver } from './profile-resolver.service';
|
|
import { ProfileRoutingModule } from './profile-routing.module';
|
|
|
|
@NgModule({
|
|
imports: [
|
|
ProfileRoutingModule,
|
|
ProfileComponent
|
|
],
|
|
providers: [
|
|
ProfileResolver
|
|
],
|
|
schemas: [CUSTOM_ELEMENTS_SCHEMA]
|
|
})
|
|
export class ProfileModule { }
|