Files
twenty_crm/front/src/modules/ui/layout/right-drawer/states/rightDrawerPageState.ts
Lucas Bordeau cb259d5cf1 Feat/add right drawer (#159)
* Added right drawer component and logic

* Refactored layout to accept right drawer
2023-05-30 21:03:50 +02:00

8 lines
224 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',
});