16 lines
306 B
TypeScript
16 lines
306 B
TypeScript
|
import { Component, OnInit } from '@angular/core';
|
||
|
|
||
|
@Component({
|
||
|
selector: 'skirda-section-label',
|
||
|
templateUrl: './section-label.component.html',
|
||
|
styleUrls: ['./section-label.component.scss']
|
||
|
})
|
||
|
export class SectionLabelComponent implements OnInit {
|
||
|
|
||
|
constructor() { }
|
||
|
|
||
|
ngOnInit(): void {
|
||
|
}
|
||
|
|
||
|
}
|