pracowniaapp2Front/src/app/comment/comment.component.ts

16 lines
273 B
TypeScript
Raw Normal View History

2020-01-20 15:02:08 +01:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-comment',
templateUrl: './comment.component.html',
styleUrls: ['./comment.component.css']
})
export class CommentComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}