Files
twenty/front/src/modules/comments/states/commentableEntityArrayState.ts
T

9 lines
231 B
TypeScript

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