UNPKG

@kv-systems/ng-packagr

Version:

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

11 lines (9 loc) 324 B
import { NgModule } from '@angular/core'; import { CommonModule } from '@angular/common'; import { SecondaryAngularComponent } from './secondary.component'; @NgModule({ imports: [CommonModule], declarations: [SecondaryAngularComponent], exports: [SecondaryAngularComponent], }) export class SecondaryAngularModule {}