This repository has been archived by the owner on Jan 10, 2018. It is now read-only.
2.1.1
Adds support for Angular2 RC5 and App Modules.
- BREAKING CHANGE: users should
import {StoreModule, Store} from '@ngrx/store'
and provide the store as follows:
import {StoreModule, Store} from '@ngrx/store'
import {NgModule} from '@angular/core'
import {BrowserModule} from '@angular/platform-browser'
@NgModule({
imports: [
BrowserModule,
StoreModule.provideStore(reducer, initialState)
]
})