Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
added dropdown component and service. not functional yet
  • Loading branch information
jos15101 committed Mar 26, 2020
1 parent 4e90a82 commit 8286cb8
Showing 1 changed file with 17 additions and 0 deletions.
17 changes: 17 additions & 0 deletions src/app/services/XAService.service.ts
@@ -0,0 +1,17 @@
import { BehaviorSubject } from 'rxjs';
import { Injectable } from '@angular/core';

@Injectable({
providedIn: 'root'
})
export class XAService {

// private selectedXA = new BehaviorSubject<string>(null);
// xa$ = this.selectedXA.asObservable();

selectedXA: string;

changeXA(xa: string) {
this.selectedXA = xa;
}
}

0 comments on commit 8286cb8

Please sign in to comment.