refactor: update import paths for better readability

This commit is contained in:
Jan K9f 2025-04-02 08:57:00 +02:00 committed by Jan-Marlon Leibl
parent defe26d0c1
commit b4caf70ffe
Signed by: jleibl
GPG key ID: 300B2F906DC6F1D5
8 changed files with 18 additions and 11 deletions

View file

@ -1,8 +1,6 @@
import { ChangeDetectionStrategy, Component, inject, signal } from '@angular/core';
import { CommonModule } from '@angular/common';
import { NavbarComponent } from '../../../shared/components/navbar/navbar.component';
import { Router } from '@angular/router';
import { UserService } from '../../../service/user.service';
import { PlayingCardComponent } from './components/playing-card/playing-card.component';
import { DealerHandComponent } from './components/dealer-hand/dealer-hand.component';
import { PlayerHandComponent } from './components/player-hand/player-hand.component';
@ -13,6 +11,8 @@ import { BlackjackService } from './services/blackjack.service';
import { HttpErrorResponse } from '@angular/common/http';
import { GameResultComponent } from './components/game-result/game-result.component';
import { GameState } from './enum/gameState';
import { NavbarComponent } from '../../../shared/components/navbar/navbar.component';
import { UserService } from '../../../service/user.service';
@Component({
selector: 'app-blackjack',