socketio/socket.io

View on GitHub
examples/angular-todomvc/src/app/app.module.ts

Summary

Maintainability
A
35 mins
Test Coverage
import { BrowserModule } from '@angular/platform-browser';
import { NgModule } from '@angular/core';

import { AppComponent } from './app.component';
import { RemoteTodoStore } from './store';
import { FormsModule } from "@angular/forms";

@NgModule({
  declarations: [
    AppComponent
  ],
  imports: [
    BrowserModule,
    FormsModule
  ],
  providers: [RemoteTodoStore],
  bootstrap: [AppComponent]
})
export class AppModule { }