add redux store bindings in main page

This commit is contained in:
Tykayn 2025-09-04 11:30:08 +02:00 committed by tykayn
parent 4218928a7b
commit ee972b10c8
5 changed files with 31 additions and 14 deletions

View file

@ -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