Files
twenty/packages/twenty-front/src/modules/object-metadata/states/shouldAppBeLoadingState.ts
T
Charles Bochet b51eb6471f Jotai 12 (#18160)
Co-authored-by: Cursor <cursoragent@cursor.com>
2026-02-23 12:01:37 +01:00

7 lines
206 B
TypeScript

import { createStateV2 } from '@/ui/utilities/state/jotai/utils/createStateV2';
export const shouldAppBeLoadingState = createStateV2<boolean>({
key: 'shouldAppBeLoadingState',
defaultValue: false,
});