Skip to content

Instantly share code, notes, and snippets.

@saigowthamr
Created March 27, 2018 00:36
Show Gist options
  • Select an option

  • Save saigowthamr/d8db16390beefd728532c38564b7092e to your computer and use it in GitHub Desktop.

Select an option

Save saigowthamr/d8db16390beefd728532c38564b7092e to your computer and use it in GitHub Desktop.
import { BrowserModule } from "@angular/platform-browser";
import { NgModule,CUSTOM_ELEMENTS_SCHEMA } from "@angular/core";
import { AppComponent } from "./app.component";
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule],
providers: [],
bootstrap: [AppComponent],
schemas: [
CUSTOM_ELEMENTS_SCHEMA // Tells Angular we have custom tags in our template
]
})
export class AppModule {}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment