import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-ri-branch', templateUrl: './ri-branch.component.html', styles: [] }) export class RiBranchComponent implements OnInit { public loaded: boolean = true; constructor() { } ngOnInit() { } }