UNPKG

@kv-systems/ng-packagr

Version:

Compile and package Angular libraries in Angular Package Format (APF)

12 lines (10 loc) 247 B
import { Component } from '@angular/core'; import { title } from '@sample/apf'; @Component({ standalone: false, selector: 'ng-component', template: '<h1>Angular {{name}}!</h1>', }) export class SecondaryAngularComponent { name = title; }