7 lines
159 B
TypeScript
7 lines
159 B
TypeScript
import { Routes } from '@angular/router';
|
|
import { Welcome } from './welcome';
|
|
|
|
export const WELCOME_ROUTES: Routes = [
|
|
{ path: '', component: Welcome },
|
|
];
|