6 lines
202 B
TypeScript
6 lines
202 B
TypeScript
import { Routes } from '@angular/router';
|
|
import {LandingPageComponent} from "./landing-page/landing-page.component";
|
|
|
|
export const routes: Routes = [
|
|
{ path: '', component: LandingPageComponent }
|
|
];
|