This repository has been archived on 2023-06-20. You can view files and clone it, but cannot push or open issues or pull requests.
RakVhalate d702e01f16
All checks were successful
continuous-integration/drone/push Build is passing
Did some
2022-11-29 22:31:55 +10:00

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