Added edit note page

This commit is contained in:
Keannu Christian Bernasol 2023-03-04 19:27:24 +08:00
parent 0f18c0be9e
commit c222ab0078
6 changed files with 184 additions and 16 deletions

View file

@ -50,3 +50,9 @@ export interface AddNoteParams {
title: string;
content: string;
}
export interface UpdateNoteParams {
id: number;
title: string;
content: string;
}