12 lines
290 B
TypeScript
12 lines
290 B
TypeScript
import { Component, OnInit } from '@angular/core';
|
|
|
|
@Component({
|
|
selector: 'app-main-layout',
|
|
templateUrl: './main-layout.component.html',
|
|
styleUrls: ['./main-layout.component.scss'],
|
|
})
|
|
export class MainLayoutComponent implements OnInit {
|
|
constructor() {}
|
|
|
|
ngOnInit(): void {}
|
|
}
|