Files
twenty/front/src/modules/views/states/isPersistingViewScopedState.ts
T

7 lines
227 B
TypeScript

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