feat: resizable sidebar (#452)

* feat: resizable sidebar

* only expand space sidebar
This commit is contained in:
Philip Okugbe
2024-11-01 10:05:03 +00:00
committed by GitHub
parent e064e58f79
commit b85b34d6b1
4 changed files with 65 additions and 6 deletions

View File

@ -19,3 +19,5 @@ export const asideStateAtom = atom<AsideStateType>({
tab: "",
isAsideOpen: false,
});
export const sidebarWidthAtom = atomWithWebStorage<number>('sidebarWidth', 300);