homepage/src/app/components/post/post.component.ts
2017-12-28 11:23:08 +01:00

16 lines
261 B
TypeScript

import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-post',
templateUrl: './post.component.html',
styleUrls: ['./post.component.css']
})
export class PostComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}