import { Component, EventEmitter, input, Output } from '@angular/core'; type Post = { title: string; description: string; pictureLink: string }; @Component({ standalone: true, selector: 'app-post', template: `
`, styles: [''], }) export class PostComponent { post = input