10 lines
235 B
TypeScript
10 lines
235 B
TypeScript
import { Routes } from '@angular/router';
|
|
import { LandingpageComponent } from './features/landing/pages/landingpage.component';
|
|
|
|
export const routes: Routes = [
|
|
{
|
|
path: "",
|
|
component: LandingpageComponent
|
|
}
|
|
];
|