Files
twenty/front/src/modules/comments/states/commentableEntityArrayState.ts
T
Lucas BordeauandGitHub a2fe159c2c Feat/open comment drawer from comment chip (#187)
* wip

* Can open comment right drawer from company name cell
2023-06-02 17:51:17 +02:00

8 lines
230 B
TypeScript

import { atom } from 'recoil';
import { CommentableEntity } from '../types/CommentableEntity';
export const commentableEntityArrayState = atom<CommentableEntity[]>({
key: 'comments/commentable-entity-array',
default: [],
});