cfb0cce9b8
* Wip refactoring view * Post merge conflicts * Fix review * Add create view capability * Fix create object missing view * Fix tests
8 lines
270 B
TypeScript
8 lines
270 B
TypeScript
import { createComponentState } from '@/ui/utilities/state/component-state/utils/createComponentState';
|
|
|
|
export const entityCountInCurrentViewComponentState =
|
|
createComponentState<number>({
|
|
key: 'entityCountInCurrentViewComponentState',
|
|
defaultValue: 0,
|
|
});
|