@@ -30,8 +30,11 @@ import { TabViewComponent } from "./tab-view/tab-view.component";
30
30
import { NavigationOptionsComponent } from "./navigation-options/navigation-options.component" ;
31
31
import { NavigationInfoComponent } from "./navigation-options/navigation-info.component" ;
32
32
33
- import { SegmentedBarMainPageComponent } from "./segmented-bar/segmented-bar-main-page.component"
34
- import { SegmentedBarIssue649Component } from "./segmented-bar/issue-649.component"
33
+ import { SegmentedBarMainPageComponent } from "./segmented-bar/segmented-bar-main-page.component" ;
34
+ import { SegmentedBarIssue649Component } from "./segmented-bar/issue-649.component" ;
35
+
36
+ import { DatePickerMainPageComponent } from "./date-picker/date-picker-main-page.component" ;
37
+ import { DatePickerIssue324Component } from "./date-picker/issue-324.component" ;
35
38
36
39
import { MainComponent } from "./main/main-page-router-outlet" ;
37
40
@@ -71,6 +74,8 @@ export const routableComponents = [
71
74
NavigationInfoComponent ,
72
75
SegmentedBarMainPageComponent ,
73
76
SegmentedBarIssue649Component ,
77
+ DatePickerMainPageComponent ,
78
+ DatePickerIssue324Component ,
74
79
] ;
75
80
76
81
// Set isNavigatable: true if the page is a mian page to other sub pages
@@ -112,6 +117,9 @@ export const routes = [
112
117
{ path : 'segmented-bar' , component : SegmentedBarMainPageComponent , data : { title : "SegmentedBar" , isNavigatable : true } } ,
113
118
{ path : 'segmented-bar/issue-649' , component : SegmentedBarIssue649Component , data : { title : "issue-649" } } ,
114
119
120
+ { path : 'date-picker' , component : DatePickerMainPageComponent , data : { title : "DatePicker" , isNavigatable : true } } ,
121
+ { path : 'date-picker/issue-324' , component : DatePickerIssue324Component , data : { title : "issue-324" } } ,
122
+
115
123
// Needed for AoT compilation
116
124
{
117
125
path : "lazy" ,
0 commit comments