@kv-systems/ng-packagr
Version:
Compile and package Angular libraries in Angular Package Format (APF)
18 lines (15 loc) • 415 B
text/typescript
import { Component } from '@angular/core';
import { SHARED_FEATURE } from '@sample/secondary/shared';
export const YEAH_I_AM_RUNNING_IN_A_LOOP_FAST = [SHARED_FEATURE];
({
standalone: false,
selector: 'app-secondary',
template: `
<ul>
<li *ngFor="let string of strings">{{ string }}</li>
</ul>
`,
})
export class SecondaryComponent {
strings = YEAH_I_AM_RUNNING_IN_A_LOOP_FAST;
}