Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 | 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x | import { Component } from '@angular/core'; import {TeamSelectorComponent} from "./components/team-selector/team-selector.component"; import {ResultEstimationComponent} from "./components/result-estimation/result-estimation.component"; import { FooterComponent } from './components/footer/footer.component'; @Component({ selector: 'app-root', standalone: true, imports: [ TeamSelectorComponent, ResultEstimationComponent, FooterComponent, ], template: ` <h1>Werewolf <small>Balance Calculator</small></h1> <div class="main"> <app-team-selector></app-team-selector> <app-result-estimation></app-result-estimation> </div> <app-footer></app-footer> ` }) export class AppComponent { } |