improve ux overflow with sidebar (#79)

This commit is contained in:
Will Chen
2025-05-02 16:29:51 -07:00
committed by GitHub
parent 30662118d7
commit 0108ff1a82
3 changed files with 19 additions and 5 deletions

4
src/atoms/uiAtoms.ts Normal file
View File

@@ -0,0 +1,4 @@
import { atom } from "jotai";
// Atom to track if any dropdown is currently open in the UI
export const dropdownOpenAtom = atom<boolean>(false);