19 lines
345 B
TypeScript
19 lines
345 B
TypeScript
import {Component, Input, OnInit} from '@angular/core';
|
|
import { SinglePost } from '../../../models/post';
|
|
|
|
@Component({
|
|
selector: 'op-single',
|
|
templateUrl: './op.component.html',
|
|
styleUrls: ['./op.component.css']
|
|
})
|
|
export class OPComponent implements OnInit {
|
|
|
|
constructor() { }
|
|
|
|
@Input() op: SinglePost
|
|
|
|
ngOnInit(): void {
|
|
}
|
|
|
|
}
|