mirror of
https://github.com/KevinMidboe/immich.git
synced 2026-01-18 07:06:46 +00: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[],
|
|
});
|