7 lines
238 B
TypeScript
7 lines
238 B
TypeScript
import { createScopedState } from '@/ui/utilities/recoil-scope/utils/createScopedState';
|
|
|
|
export const entityCountInCurrentViewScopedState = createScopedState<number>({
|
|
key: 'entityCountInCurrentViewScopedState',
|
|
defaultValue: 0,
|
|
});
|