feat: separate document data from document

This commit is contained in:
Mythie
2023-09-07 19:27:21 +10:00
parent 0f38be4e41
commit 72bec7bc34
22 changed files with 300 additions and 44 deletions

View File

@ -0,0 +1,10 @@
'use server';
export type CreateDocumentOptions = {
userId: number;
fileName: string;
};
export const createDocument = () => {
//
};