11 lines
222 B
TypeScript
11 lines
222 B
TypeScript
import { Routes } from '@angular/router';
|
|
import { TestComponent } from './test/test.component';
|
|
|
|
export const routes: Routes = [
|
|
{
|
|
path: '',
|
|
component: TestComponent,
|
|
title: 'My Page'
|
|
}
|
|
];
|