1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-25 21:06:42 +07:00

added notes

This commit is contained in:
Fedor Katurov 2022-04-04 15:00:33 +07:00
parent 592284f438
commit fce11163aa
9 changed files with 138 additions and 11 deletions

5
src/types/notes/index.ts Normal file
View file

@ -0,0 +1,5 @@
export interface Note {
id: number;
content: string;
created_at: string;
}