add redux store bindings in main page
This commit is contained in:
parent
4218928a7b
commit
ee972b10c8
5 changed files with 31 additions and 14 deletions
|
@ -1,4 +1,4 @@
|
|||
import { Component } from '@angular/core';
|
||||
import {Component, Input} from '@angular/core';
|
||||
|
||||
@Component({
|
||||
selector: 'app-case-result',
|
||||
|
@ -9,7 +9,9 @@ import { Component } from '@angular/core';
|
|||
export class CaseResult {
|
||||
|
||||
|
||||
public activeTab:string = ''
|
||||
@Input() case: any = {};
|
||||
public activeTab: string = ''
|
||||
|
||||
selectCaseTab(activeTab: string) {
|
||||
console.log('todo')
|
||||
this.activeTab = activeTab
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue