* Proof of concept ComponentState * Migrate to createState and createFamilyState * Refactor * Fix * Fix tests * Fix lint * Fix tests * Re-enable coverage
9 lines
267 B
TypeScript
9 lines
267 B
TypeScript
import { createComponentState } from '@/ui/utilities/state/component-state/utils/createComponentState';
|
|
|
|
export const entityCountInCurrentViewScopedState = createComponentState<number>(
|
|
{
|
|
key: 'entityCountInCurrentViewScopedState',
|
|
defaultValue: 0,
|
|
},
|
|
);
|