first comit

This commit is contained in:
Johan
2025-12-17 09:49:48 +01:00
commit 69f2bea0e7
23 changed files with 10487 additions and 0 deletions

View File

@@ -0,0 +1,11 @@
import { Routes } from '@angular/router';
import {TodoListComponent} from './todo-list/todo-list.component';
export const TODO_ROUTES: Routes = [
{
path: '',
component: TodoListComponent,
title: 'Todo List',
},
];