Files
twenty/packages/twenty-front/src/modules/views/states/entityCountInCurrentViewScopedState.ts
2023-12-10 18:10:54 +01:00

7 lines
238 B
TypeScript

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