Created
August 27, 2019 16:58
-
-
Save hetdev/6e1722dfafe2af6793e459f150e1900f to your computer and use it in GitHub Desktop.
Revisions
-
hetdev created this gist
Aug 27, 2019 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,29 @@ 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 { }