12 lines
206 B
TypeScript
12 lines
206 B
TypeScript
|
import { Component } from "@angular/core";
|
||
|
|
||
|
|
||
|
@Component({
|
||
|
selector: 'app-button',
|
||
|
standalone: true,
|
||
|
templateUrl: './button.component.html',
|
||
|
})
|
||
|
export class ButtonComponent {
|
||
|
public text = 'Test';
|
||
|
}
|