Skip to content

Instantly share code, notes, and snippets.

@hetdev
Created August 27, 2019 16:58
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save hetdev/6e1722dfafe2af6793e459f150e1900f to your computer and use it in GitHub Desktop.
Save hetdev/6e1722dfafe2af6793e459f150e1900f to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import {CUSTOM_ELEMENTS_SCHEMA, NgModule} from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
import { ProfileComponent } from './profile/profile.component';
import { LoginComponent } from './login/login.component';
import {NgbModule} from '@ng-bootstrap/ng-bootstrap';
import { CallbackComponent } from './callback/callback.component';
import {LazyElementsModule} from '@angular-extensions/elements';
@NgModule({
schemas: [CUSTOM_ELEMENTS_SCHEMA],
declarations: [
AppComponent,
ProfileComponent,
LoginComponent,
CallbackComponent
],
imports: [
BrowserModule,
AppRoutingModule,
NgbModule,
LazyElementsModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment