Files
twenty_crm/front/src/modules/ui/layout/right-drawer/states/rightDrawerPageState.ts

9 lines
225 B
TypeScript

import { atom } from 'recoil';
import { RightDrawerPage } from '../types/RightDrawerPage';
export const rightDrawerPageState = atom<RightDrawerPage | null>({
key: 'ui/layout/right-drawer-page',
default: 'comments',
});