import {Store} from '@nlabs/arkhamjs';

export class SampleStore extends Store {
  constructor() {
    super('sample');
  }

  initialState(): any {
    return {
    };
  }

  onAction(type: string, data, state): any {
    switch(type) {
      default: {
        return state;
      }
    }
  }
}
