Skip to content

Instantly share code, notes, and snippets.

@jonathanwoahn
Last active December 4, 2020 17:55
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/2ae39322c1bf1ce97becc373d74e04ca to your computer and use it in GitHub Desktop.
Save jonathanwoahn/2ae39322c1bf1ce97becc373d74e04ca 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';
import { HttpClientModule } from '@angular/common/http';
import { EzngrxModule } from '@woahn/ezngrx';
import { config } from './ezngrx.config';
import { FlexLayoutModule } from '@angular/flex-layout';
import { MatCardModule } from '@angular/material/card';
import { MatInputModule } from '@angular/material/input';
import { MatListModule } from '@angular/material/list';
export interface Todo {
id: string;
text: string;
}
@NgModule({
declarations: [AppComponent],
imports: [
BrowserModule,
FlexLayoutModule,
MatCardModule,
MatInputModule,
MatListModule,
HttpClientModule,
EzngrxModule.forRoot(config),
],
providers: [],
bootstrap: [AppComponent]
})
export class AppModule { }
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment