import { Store } from '@ngrx/store';

export abstract class BaseComponent {

  protected constructor(
    protected readonly store: Store,
  ) {
  }
}