Created
October 2, 2020 12:30
-
-
Save carlosrojaso/061a0f74939adb497fa30ac356cee164 to your computer and use it in GitHub Desktop.
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 characters
import { BrowserModule } from '@angular/platform-browser'; | |
import { NgModule, CUSTOM_ELEMENTS_SCHEMA } from '@angular/core'; | |
import 'simple-error-component'; | |
import { AppComponent } from './app.component'; | |
@NgModule({ | |
declarations: [ | |
AppComponent | |
], | |
imports: [ | |
BrowserModule | |
], | |
providers: [], | |
bootstrap: [AppComponent], | |
schemas: [ | |
CUSTOM_ELEMENTS_SCHEMA | |
] | |
}) | |
export class AppModule { } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment