You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
RTL/src/app/shared/components/ln-services/ln-services.component.ts

17 lines
327 B
TypeScript

import { Component, OnInit, OnDestroy } from '@angular/core';
@Component({
selector: 'rtl-ln-services',
templateUrl: './ln-services.component.html',
styleUrls: ['./ln-services.component.scss']
})
export class LNServicesComponent implements OnInit, OnDestroy {
constructor() {}
ngOnInit() {}
ngOnDestroy() {}
}