-
-
Notifications
You must be signed in to change notification settings - Fork 257
/
Copy pathapp.routing.ts
44 lines (43 loc) · 1.11 KB
/
app.routing.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
import { Routes } from '@angular/router';
import { SimpleComponent } from './simple/simple.component';
import { FullComponent } from './full/full.component';
import { CustomRangesComponent } from './custom-ranges/custom-ranges.component';
import { SingleDatepickerComponent } from './single-datepicker/single-datepicker.component';
import { TimepickerComponent } from './timepicker/timepicker.component';
import { ReactiveFormComponent } from './reactive-form/reactive-form.component';
import { LocaleComponent } from './locale/locale.component';
export const appRoutes: Routes = [
{
path: '',
redirectTo: 'simple',
pathMatch: 'full'
},
{
path: 'simple',
component: SimpleComponent
},
{
path: 'locale',
component: LocaleComponent
},
{
path: 'single-datepicker',
component: SingleDatepickerComponent
},
{
path: 'with-timepicker',
component: TimepickerComponent
},
{
path: 'full',
component: FullComponent
},
{
path: 'custom-ranges',
component: CustomRangesComponent
},
{
path: 'reactive-forms',
component: ReactiveFormComponent
}
];