f55b3add80
Co-authored-by: Thomas Way <thomas@6f.io>
11 lines
272 B
TypeScript
11 lines
272 B
TypeScript
import { writable } from 'svelte/store';
|
|
|
|
function createAlbumAssetSelectionStore() {
|
|
const isAlbumAssetSelectionOpen = writable<boolean>(false);
|
|
return {
|
|
isAlbumAssetSelectionOpen,
|
|
};
|
|
}
|
|
|
|
export const albumAssetSelectionStore = createAlbumAssetSelectionStore();
|