fb920a92e7
* 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
12 lines
324 B
TypeScript
12 lines
324 B
TypeScript
import { atomFamily } from 'recoil';
|
|
|
|
import { Activity } from '@/activities/types/Activity';
|
|
|
|
export const timelineActivityWithoutTargetsFamilyState = atomFamily<
|
|
Pick<Activity, 'id' | 'title' | 'createdAt' | 'author' | 'type'> | null,
|
|
string
|
|
>({
|
|
key: 'timelineActivityFirstLevelFamilySelector',
|
|
default: null,
|
|
});
|