20 lines
512 B
TypeScript
20 lines
512 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
import { CvService } from '../services/cv.service';
|
|
import { ISideBar } from '../contact-sidebar/side-bar.model';
|
|
import { BaseComponent } from '../base/base.component';
|
|
|
|
@Component({
|
|
selector: 'app-blog',
|
|
templateUrl: './blog.component.html',
|
|
styleUrl: './blog.component.scss'
|
|
})
|
|
export class BlogComponent extends BaseComponent<ISideBar> implements OnInit{
|
|
constructor(svc: CvService){
|
|
super(svc);
|
|
}
|
|
|
|
ngOnInit(): void {
|
|
this.init();
|
|
}
|
|
}
|