Implement Optimistic Effects (#1415)

* 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
This commit is contained in:
Charles Bochet
2023-09-04 10:56:48 +02:00
committed by GitHub
parent ae072b6ce5
commit a46210bb80
10 changed files with 188 additions and 1 deletions

View File

@ -0,0 +1,10 @@
import { atom } from 'recoil';
import { OptimisticEffect } from '../types/OptimisticEffect';
export const optimisticEffectState = atom<
Record<string, OptimisticEffect<unknown, unknown>>
>({
key: 'optimisticEffectState',
default: {},
});