TFTPaths/src/modules/pool/components/layout/layout.component.ts

16 lines
270 B
TypeScript
Raw Normal View History

2019-08-19 19:44:54 +02:00
import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-layout',
templateUrl: './layout.component.html',
styleUrls: ['./layout.component.scss']
})
export class LayoutComponent implements OnInit {
constructor() { }
ngOnInit() {
}
}