Skip to content

Instantly share code, notes, and snippets.

@jonathanwoahn
Created June 4, 2019 07:13
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/e603db0ca25bb6d7741c890b8c49256d to your computer and use it in GitHub Desktop.
Save jonathanwoahn/e603db0ca25bb6d7741c890b8c49256d to your computer and use it in GitHub Desktop.
export interface Todo {
id: string;
text: string;
}
@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
BrowserAnimationsModule,
FlexLayoutModule,
MatCardModule,
MatInputModule,
MatListModule,
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment