Files
2026-02-16 16:41:54 -08:00

14 lines
322 B
TypeScript

import { atom, useAtom } from "jotai";
// Export the sidebar open state atom so it can be used from other parts of the app
export const sidebarOpenAtom = atom<boolean>(false);
export const useSidebarContext = () => {
const [isOpen, setIsOpen] = useAtom(sidebarOpenAtom);
return {
isOpen,
setIsOpen,
};
};