17 lines
371 B
TypeScript
17 lines
371 B
TypeScript
|
|
import {Component} from '@angular/core';
|
||
|
|
|
||
|
|
@Component({
|
||
|
|
selector: 'app-copy-ip',
|
||
|
|
templateUrl: './copy-ip.component.html',
|
||
|
|
styleUrl: './copy-ip.component.scss'
|
||
|
|
})
|
||
|
|
export class CopyIpComponent {
|
||
|
|
public displayText: string = 'Copy IP'
|
||
|
|
|
||
|
|
public copyIpToClipboard(): void {
|
||
|
|
navigator.clipboard.writeText('play.alttd.com');
|
||
|
|
this.displayText = 'Copied!';
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|