UNPKG

@nstudio/schematics

Version:

Cross-platform (xplat) tools for Nx workspaces.

17 lines (12 loc) 474 B
import { Component, Input, Output, EventEmitter } from '@angular/core'; // libs import { BaseComponent } from '@<%= npmScope %>/core/base'; export abstract class HeaderBaseComponent extends BaseComponent { /** * These are just samples to give you an idea of what can be done. * Change, remove and customize however you'd like! */ @Input() title: string; @Input() rightButton: string; @Output() tappedRight: EventEmitter<boolean> = new EventEmitter(); }