10 lines
229 B
TypeScript
10 lines
229 B
TypeScript
import { Route } from '@angular/router';
|
|
import { LandingHomeComponent } from 'app/modules/landing/home/home.component';
|
|
|
|
export const landingHomeRoutes: Route[] = [
|
|
{
|
|
path: '',
|
|
component: LandingHomeComponent,
|
|
},
|
|
];
|