6 lines
312 B
TypeScript
6 lines
312 B
TypeScript
import { atom } from 'jotai';
|
|
|
|
// Open state for the channels workspace-switcher horseshoe sheet (PageNav-
|
|
// scoped, web + native parity). Mirror of `settingsSheetAtom`, simpler
|
|
// payload: the sheet has no sub-pages so a plain boolean is enough.
|
|
export const channelsWorkspaceSheetAtom = atom<boolean>(false);
|