ToDoList version1 front

This commit is contained in:
HarmandI 2022-01-30 20:23:15 +01:00
parent ef3418b45c
commit 9287f531d2
10 changed files with 1130 additions and 1649 deletions

View file

@ -0,0 +1,7 @@
export interface Todo {
id : number,
title : string,
completed: boolean,
editing: boolean
}