mirror of
https://github.com/lemeow125/React-NotesApp.git
synced 2025-05-17 03:48:10 +08:00
Added edit note page
This commit is contained in:
parent
0f18c0be9e
commit
c222ab0078
6 changed files with 184 additions and 16 deletions
|
@ -50,3 +50,9 @@ export interface AddNoteParams {
|
|||
title: string;
|
||||
content: string;
|
||||
}
|
||||
|
||||
export interface UpdateNoteParams {
|
||||
id: number;
|
||||
title: string;
|
||||
content: string;
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue