Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Save kevinchisholm/11b18e9dd904345c171d9c4e494e30a5 to your computer and use it in GitHub Desktop.
Save kevinchisholm/11b18e9dd904345c171d9c4e494e30a5 to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppComponent } from './app.component';
import { MyFirstComponent } from './my-first.component';
import { DisplayEntries } from './display-entries.component';
@NgModule({
declarations: [
AppComponent,
MyFirstComponent,
DisplayEntries
],
imports: [
BrowserModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment