import { Component, OnInit } from '@angular/core'; @Component({ selector: 'app-layout-directive', template: `

layout-directive works!

`, }) export class LayoutDirectiveComponent implements OnInit { constructor() {} ngOnInit(): void {} }