Allow multiple folder to be open at once (#9242)

This commit is contained in:
nitin
2024-12-27 16:00:30 +05:30
committed by GitHub
parent 8668fd2b94
commit e1f8ac4a4c
4 changed files with 33 additions and 15 deletions

View File

@ -1,6 +0,0 @@
import { atom } from 'recoil';
export const activeFavoriteFolderIdState = atom<string | null>({
key: 'activeFavoriteFolderIdState',
default: null,
});

View File

@ -0,0 +1,6 @@
import { atom } from 'recoil';
export const openFavoriteFolderIdsState = atom<string[]>({
key: 'openFavoriteFolderIdsState',
default: [],
});