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