86c0f311f5
* Proof of concept ComponentState * Migrate to createState and createFamilyState * Refactor * Fix * Fix tests * Fix lint * Fix tests * Re-enable coverage
7 lines
207 B
TypeScript
7 lines
207 B
TypeScript
import { createState } from '@/ui/utilities/state/utils/createState';
|
|
|
|
export const viewableActivityIdState = createState<string | null>({
|
|
key: 'activities/viewable-activity-id',
|
|
defaultValue: null,
|
|
});
|