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