Files
immich/web/src/lib/stores/drag-and-drop-files.store.ts

8 lines
208 B
TypeScript
Raw Normal View History

//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[]
});