15 lines
269 B
TypeScript
15 lines
269 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-pool',
|
||
|
templateUrl: './pool.component.html',
|
||
|
styleUrls: ['./pool.component.scss']
|
||
|
})
|
||
|
export class PoolComponent implements OnInit {
|
||
|
constructor(
|
||
|
) { }
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
}
|
||
|
}
|