* Proof of concept ComponentState * Migrate to createState and createFamilyState * Refactor * Fix * Fix tests * Fix lint * Fix tests * Re-enable coverage
10 lines
264 B
TypeScript
10 lines
264 B
TypeScript
import { createFamilyState } from '@/ui/utilities/state/utils/createFamilyState';
|
|
|
|
export const activityTitleHasBeenSetFamilyState = createFamilyState<
|
|
boolean,
|
|
{ activityId: string }
|
|
>({
|
|
key: 'activityTitleHasBeenSetFamilyState',
|
|
defaultValue: false,
|
|
});
|