mirror of
https://github.com/vercel/chat.git
synced 2026-09-14 18:32:29 +08:00
14 lines
322 B
TypeScript
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,
|
|
};
|
|
};
|