16 lines
270 B
TypeScript
16 lines
270 B
TypeScript
|
|
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() {
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|