1 import { Component, OnInit, Output, EventEmitter } from '@angular/core';
4 selector: 'app-templ-mapp-listing',
5 templateUrl: './templ-mapp-listing.component.html',
6 styleUrls: ['./templ-mapp-listing.component.css']
8 export class TemplMappListingComponent implements OnInit {
9 @Output() showCreationViewParentNotification = new EventEmitter<any>();
17 this.showCreationViewParentNotification.emit('tell parent to open create views');