legio-30/src/app/views/home/home.component.ts
2022-09-24 17:54:51 -04:00

12 lines
265 B
TypeScript

import {Component} from '@angular/core';
import {NAVIGATION} from '../../misc/navigation';
@Component({
selector: 'xxx-home',
templateUrl: './home.component.html',
styleUrls: ['./home.component.scss']
})
export class HomeComponent {
navigation = NAVIGATION;
}