Skip to content

Commit 38cf531

Browse files
committed
test(bottomNav): adding a routing test components #4297
1 parent c0c7a75 commit 38cf531

File tree

1 file changed

+30
-0
lines changed

1 file changed

+30
-0
lines changed
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
import { Component, NgModule } from '@angular/core';
2+
3+
@Component({
4+
template: `This is content in component # 1`
5+
})
6+
export class RoutingView1Component {
7+
}
8+
9+
@Component({
10+
template: `This is content in component # 2`
11+
})
12+
export class RoutingView2Component {
13+
}
14+
15+
@Component({
16+
template: `This is content in component # 3`
17+
})
18+
export class RoutingView3Component {
19+
}
20+
21+
/**
22+
* @hidden
23+
*/
24+
@NgModule({
25+
declarations: [RoutingView1Component, RoutingView2Component, RoutingView3Component],
26+
exports: [RoutingView1Component, RoutingView2Component, RoutingView3Component],
27+
// imports: [CommonModule, IgxBadgeModule, IgxIconModule]
28+
})
29+
export class RoutingViewComponentsModule {
30+
}

0 commit comments

Comments
 (0)