mirror of
https://github.com/KevinMidboe/immich.git
synced 2025-10-29 17:40:28 +00:00
- Implement a scrollbar with a timeline similar to Google Photos - The scrollbar can also be dragged
11 lines
266 B
TypeScript
11 lines
266 B
TypeScript
import { writable } from 'svelte/store';
|
|
|
|
function createAlbumAssetSelectionStore() {
|
|
const isAlbumAssetSelectionOpen = writable<boolean>(false);
|
|
return {
|
|
isAlbumAssetSelectionOpen
|
|
};
|
|
}
|
|
|
|
export const albumAssetSelectionStore = createAlbumAssetSelectionStore();
|