Skip to content

Instantly share code, notes, and snippets.

@jonathanwoahn
Last active December 4, 2020 17:38
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 jonathanwoahn/e6e44c5f22ca2f0c9b69bca2766ea99b to your computer and use it in GitHub Desktop.
Save jonathanwoahn/e6e44c5f22ca2f0c9b69bca2766ea99b to your computer and use it in GitHub Desktop.
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';
import { AppRoutingModule } from './app-routing.module';
import { AppComponent } from './app.component';
export interface Todo {
id: string;
text: string;
}
@NgModule({
declarations: [
AppComponent
],
imports: [
BrowserModule,
AppRoutingModule
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment