import { Component, OnInit } from '@angular/core';
@Component({
selector: 'app-layout-directive',
template: ` <p>layout-directive works!</p> `,
})
export class LayoutDirectiveComponent implements OnInit {
constructor() {}
ngOnInit(): void {}
}