refactor(blackjack): move GameState to feature folder
This commit is contained in:
parent
2d8b137e69
commit
defe26d0c1
5 changed files with 4 additions and 4 deletions
|
@ -1,7 +1,7 @@
|
|||
import { ChangeDetectionStrategy, Component, EventEmitter, Input, Output } from '@angular/core';
|
||||
import { CommonModule } from '@angular/common';
|
||||
import { Card } from '../../models/blackjack.model';
|
||||
import { GameState } from '../../../../../enum/gameState';
|
||||
import { GameState } from '../../enum/gameState';
|
||||
import { GameControlsService } from '../../services/game-controls.service';
|
||||
|
||||
@Component({
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { ChangeDetectionStrategy, Component, Input, Output, EventEmitter } from '@angular/core';
|
||||
import { CommonModule, CurrencyPipe } from '@angular/common';
|
||||
import { animate, style, transition, trigger } from '@angular/animations';
|
||||
import { GameState } from '../../../../../enum/gameState';
|
||||
import { GameState } from '../../enum/gameState';
|
||||
|
||||
@Component({
|
||||
selector: 'app-game-result',
|
||||
|
|
Reference in a new issue