* 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
10 lines
181 B
TypeScript
10 lines
181 B
TypeScript
import { atomFamily } from 'recoil';
|
|
|
|
export const activityBodyFamilyState = atomFamily<
|
|
string,
|
|
{ activityId: string }
|
|
>({
|
|
key: 'activityBodyFamilyState',
|
|
default: '',
|
|
});
|