16 lines
271 B
TypeScript
16 lines
271 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-hello',
|
|
templateUrl: './hello.component.html',
|
|
styleUrls: ['./hello.component.css']
|
|
})
|
|
export class HelloComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|