Skip to content

Instantly share code, notes, and snippets.

@ksakae1216
Created January 29, 2022 03:56
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 ksakae1216/d50e7566c5023adcec6f9fe3393e9b57 to your computer and use it in GitHub Desktop.
Save ksakae1216/d50e7566c5023adcec6f9fe3393e9b57 to your computer and use it in GitHub Desktop.
import { StoreModule } from '@ngrx/store';
import { EffectsModule } from '@ngrx/effects';
@NgModule({
declarations: [
StoreModule.forRoot({ LoginState: loginReducer}), // LoginStateはselectorで書いたキー
EffectsModule.forRoot([LoginEffects]),
],
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment