File tree 3 files changed +8
-3
lines changed
projects/bundle-test/src/app
3 files changed +8
-3
lines changed Original file line number Diff line number Diff line change 1
1
<!-- Toolbar -->
2
2
< div role ="banner ">
3
- < router-outlet > </ router-outlet >
3
+ < igx-chip [resourceStrings] ="chipStrings "> Chip</ igx-chip >
4
+ <!-- <router-outlet></router-outlet> -->
4
5
</ div >
5
6
Original file line number Diff line number Diff line change 1
1
import { Component } from '@angular/core' ;
2
+ import { ChipResourceStringsBG } from 'igniteui-angular-i18n' ;
2
3
3
4
@Component ( {
4
5
selector : 'app-root' ,
5
6
templateUrl : './app.component.html' ,
6
7
styleUrls : [ './app.component.scss' ]
7
8
} )
8
9
export class AppComponent {
10
+ protected chipStrings = ChipResourceStringsBG ;
9
11
}
Original file line number Diff line number Diff line change @@ -2,15 +2,17 @@ import { NgModule } from '@angular/core';
2
2
import { BrowserModule } from '@angular/platform-browser' ;
3
3
4
4
import { AppComponent } from './app.component' ;
5
- import { AppRoutingModule } from './app-routing.module' ;
5
+ // import { AppRoutingModule } from './app-routing.module';
6
+ import { IgxChipsModule } from 'igniteui-angular' ;
6
7
7
8
@NgModule ( {
8
9
declarations : [
9
10
AppComponent
10
11
] ,
11
12
imports : [
12
13
BrowserModule ,
13
- AppRoutingModule
14
+ // AppRoutingModule,
15
+ IgxChipsModule
14
16
] ,
15
17
providers : [ ] ,
16
18
bootstrap : [ AppComponent ]
You can’t perform that action at this time.
0 commit comments