UNPKG

@kv-systems/ng-packagr

Version:

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

14 lines (12 loc) 268 B
import { Component } from '@angular/core'; @Component({ standalone: false, selector: 'foobar-component', template: ` <h1>{{ title }}</h1> `, styleUrls: ['./foo-bar.component.css'], }) export class FooBarComponent { public title: string = 'foobar!'; }