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