ChurchAngular/src/app/games/games.component.ts
Chris Chen b46392bc41 WIP
2024-03-21 17:47:13 -07:00

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('我是遊戲王');
}
}