Ontica/Empiria.Land.Intranet

View on GitHub
src/app/main-layout/top-bar/top-bar.component.ts

Summary

Maintainability
A
0 mins
Test Coverage
/**
 * @license
 * Copyright (c) La Vía Óntica SC, Ontica LLC and contributors. All rights reserved.
 *
 * See LICENSE.txt in the project root for complete license information.
 */

import { Component } from '@angular/core';

import { APP_CONFIG } from '../config-data';

@Component({
  selector: 'emp-ng-top-bar',
  templateUrl: './top-bar.component.html',
  styleUrls: ['./top-bar.component.scss']
})
export class TopBarComponent {
  appLayoutConfig = APP_CONFIG.layout;
}