8 lines
230 B
TypeScript
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: [],
|
|
});
|