add useDocuments and load saved documents in DocumentsVault

This commit is contained in:
LathanDevers
2026-07-31 21:37:56 +02:00
parent c7389d747b
commit 6b93d21d19
16 changed files with 280 additions and 294 deletions
+7
View File
@@ -0,0 +1,7 @@
export interface Document {
id: string;
title: string;
category: string;
file: File;
created: string;
}