* Fix person deletion not reflected on Opportunities POC * Fix companies, user deletion * Implement optimistic effects * Implement optimistic effects * Implement optimistic effects * Fix accoding to PR
11 lines
246 B
TypeScript
11 lines
246 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
import { OptimisticEffect } from '../types/OptimisticEffect';
|
|
|
|
export const optimisticEffectState = atom<
|
|
Record<string, OptimisticEffect<unknown, unknown>>
|
|
>({
|
|
key: 'optimisticEffectState',
|
|
default: {},
|
|
});
|