Oskar Sisi has worked in the esports industry since 2013. Oskar began their career as a Motion Graphic Designer at NEVERBLAND in 2013. In 2014, they moved to Agencja Reklamowa Bogaczewicz as an Art Director. In 2015, they joined Fnatic as a Product Creative Director and Sr Art Director. In 2021, they became the Brand & Marketing Director and Creative Director at EXCEL ESPORTS.
import { Component, OnInit, Input } from '@angular/core';
@Component({
selector: 'app-post-list-item',
templateUrl: './post-list-item.component.html',
styleUrls: ['./post-list-item.component.scss']
})
export class PostListItemComponent implements OnInit {
@Input() postTitle: string;
@Input() postContent: string;
@Input() postLoveIts: number;
@Input() postCreatedAt: Date;
constructor() { }
ngOnInit() {
}
onLoveIt() {
this.postLoveIts++;
}
onDontLoveIt() {
this.postLoveIts--;
}
}
Sign up to view 7 direct reports
Get started