21 lines
495 B
TypeScript
21 lines
495 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { Title } from '@angular/platform-browser';
|
|
import { GameRoomService } from '../services/game-room.service';
|
|
|
|
@Component({
|
|
selector: 'ngx-games',
|
|
templateUrl: './games.component.html',
|
|
styleUrls: ['./games.component.scss']
|
|
})
|
|
export class GamesComponent implements OnInit {
|
|
|
|
constructor(
|
|
public gameRoomService: GameRoomService
|
|
) { }
|
|
|
|
ngOnInit(): void {
|
|
//this.browserTitleService.setTitle('我是遊戲王');
|
|
}
|
|
|
|
}
|