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