Added angular-librarian for manage library
This commit is contained in:
parent
9d174550f5
commit
e625f9fd30
44 changed files with 1867 additions and 228 deletions
18
examples/example.module.ts
Normal file
18
examples/example.module.ts
Normal file
|
|
@ -0,0 +1,18 @@
|
|||
import { BrowserModule } from '@angular/platform-browser';
|
||||
import { NgModule } from '@angular/core';
|
||||
|
||||
import { ExampleComponent } from './example.component';
|
||||
import { Ng2FittextModule } from '../index';
|
||||
|
||||
@NgModule({
|
||||
declarations: [
|
||||
ExampleComponent
|
||||
],
|
||||
imports: [
|
||||
BrowserModule,
|
||||
Ng2FittextModule
|
||||
],
|
||||
providers: [],
|
||||
bootstrap: [ExampleComponent]
|
||||
})
|
||||
export class ExampleModule { }
|
||||
Loading…
Add table
Add a link
Reference in a new issue