mirror of
https://github.com/immich-app/immich.git
synced 2025-12-21 17:25:35 +03:00
8 lines
211 B
TypeScript
8 lines
211 B
TypeScript
//store to track the state of the drag and drop and the files
|
|
import { writable } from 'svelte/store';
|
|
|
|
export const dragAndDropFilesStore = writable({
|
|
isDragging: false as boolean,
|
|
files: [] as File[],
|
|
});
|