Files
immich/web/src/lib/stores/album-asset-selection.store.ts
Alex d856b35afc feat(web) add scrollbar with timeline information (#658)
- Implement a scrollbar with a timeline similar to Google Photos
- The scrollbar can also be dragged
2022-09-09 15:55:20 -05:00

11 lines
266 B
TypeScript

import { writable } from 'svelte/store';
function createAlbumAssetSelectionStore() {
const isAlbumAssetSelectionOpen = writable<boolean>(false);
return {
isAlbumAssetSelectionOpen
};
}
export const albumAssetSelectionStore = createAlbumAssetSelectionStore();