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/lnd/routing/routing.component.ts

18 lines
380 B
TypeScript

import { Component, OnInit } from '@angular/core';
import { faProjectDiagram } from '@fortawesome/free-solid-svg-icons';
@Component({
selector: 'rtl-routing',
templateUrl: './routing.component.html',
styleUrls: ['./routing.component.scss']
})
export class RoutingComponent implements OnInit {
faProjectDiagram = faProjectDiagram;
constructor() {}
ngOnInit() {}
}