Files
twenty/packages/twenty-front/src/modules/activities/states/activityBodyFamilyState.ts
Lucas Bordeau fb920a92e7 Improved activity editor re-renders (#4149)
* Refactor task count

* Fixed show page rerender

* Less rerenders and way better title and body UX

* Finished breaking down activity editor subscriptions

* Removed console.log

* Last console.log

* Fixed bugs and cleaned
2024-02-23 17:54:27 +01:00

10 lines
181 B
TypeScript

import { atomFamily } from 'recoil';
export const activityBodyFamilyState = atomFamily<
string,
{ activityId: string }
>({
key: 'activityBodyFamilyState',
default: '',
});