skirda-go-launcher-interface/projects/ui/src/lib/section-label/section-label.component.ts

16 lines
306 B
TypeScript
Raw Normal View History

2022-10-21 18:06:04 +00:00
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 {
}
}