mirror of
https://github.com/immich-app/immich.git
synced 2025-01-10 13:56:47 +01:00
f55b3add80
Co-authored-by: Thomas Way <thomas@6f.io>
10 lines
272 B
TypeScript
10 lines
272 B
TypeScript
import { writable } from 'svelte/store';
|
|
|
|
function createAlbumAssetSelectionStore() {
|
|
const isAlbumAssetSelectionOpen = writable<boolean>(false);
|
|
return {
|
|
isAlbumAssetSelectionOpen,
|
|
};
|
|
}
|
|
|
|
export const albumAssetSelectionStore = createAlbumAssetSelectionStore();
|