mirror of
https://github.com/Lissy93/happy-app.git
synced 2021-05-12 19:52:18 +03:00
14 lines
269 B
TypeScript
14 lines
269 B
TypeScript
|
|
import {Component} from "@angular/core";
|
|
|
|
@Component({
|
|
selector: 'app-feedback',
|
|
templateUrl: 'app-feedback.html',
|
|
styleUrls: ['app-feedback.css']
|
|
})
|
|
export class AppFeedbackComponent {
|
|
constructor() {
|
|
console.log('constructor called');
|
|
}
|
|
}
|