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 { } }