1
0
Fork 0
mirror of https://github.com/muerwre/vault-frontend.git synced 2025-04-24 20:36:40 +07:00

add room editor dialog

This commit is contained in:
Fedor Katurov 2023-10-26 19:23:27 +06:00
parent f809ab40b7
commit 7698d17ed3
11 changed files with 207 additions and 81 deletions

View file

@ -17,6 +17,8 @@ const UploaderContext = createContext<Uploader>({
pendingImages: [],
isUploading: false,
setFiles: (files: IFile[]) => files,
setImages: (files: IFile[]) => files,
setAudios: (files: IFile[]) => files,
});
export const UploaderContextProvider: FC<{