* 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
247 B
TypeScript
12 lines
247 B
TypeScript
import { atomFamily } from 'recoil';
|
|
|
|
import { Activity } from '@/activities/types/Activity';
|
|
|
|
export const timelineActivitiesFammilyState = atomFamily<
|
|
Activity | null,
|
|
string
|
|
>({
|
|
key: 'timelineActivitiesFammilyState',
|
|
default: null,
|
|
});
|