d856b35afc
- 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();
|