mirror of
https://github.com/kuhyx/WUT_Computer_Science.git
synced 2026-07-04 18:23:15 +02:00
13 lines
227 B
TypeScript
13 lines
227 B
TypeScript
|
|
import { Component } from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-game',
|
||
|
|
standalone: true,
|
||
|
|
imports: [],
|
||
|
|
templateUrl: './game.component.html',
|
||
|
|
styleUrl: './game.component.scss'
|
||
|
|
})
|
||
|
|
export class GameComponent {
|
||
|
|
|
||
|
|
}
|