Skip to content

Instantly share code, notes, and snippets.

@jplemieux66
Created June 12, 2018 23:57
Show Gist options
  • Save jplemieux66/237482e07b4b06a203ca4fd2220cf8ce to your computer and use it in GitHub Desktop.
Save jplemieux66/237482e07b4b06a203ca4fd2220cf8ce to your computer and use it in GitHub Desktop.
import { Injectable } from '@angular/core';
import { Actions } from '@ngrx/effects';
import { ProjectsService } from './../services/projects.service';
@Injectable()
export class ProjectEffects {
constructor(private actions$: Actions,
private projectsService: ProjectsService) { }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment