import { Injectable } from '@angular/core';
import { Actions, Effect } from '@ngrx/effects';

@Injectable()
export class FormEffects {

  constructor(private actions$: Actions) {

  }

}