12 lines
232 B
TypeScript
12 lines
232 B
TypeScript
import { Routes } from '@angular/router';
|
|
import {TodoListComponent} from './todo-list/todo-list.component';
|
|
|
|
export const TODO_ROUTES: Routes = [
|
|
{
|
|
path: '',
|
|
component: TodoListComponent,
|
|
title: 'Todo List',
|
|
},
|
|
];
|
|
|