Files
twenty_crm/packages/twenty-front/src/modules/views/states/currentViewIdComponentState.ts
Charles Bochet cfb0cce9b8 Refactor Views by cleaning the code, relying on apolloCache and improving performances (#4516)
* Wip refactoring view

* Post merge conflicts

* Fix review

* Add create view capability

* Fix create object missing view

* Fix tests
2024-03-20 14:21:58 +01:00

9 lines
264 B
TypeScript

import { createComponentState } from '@/ui/utilities/state/component-state/utils/createComponentState';
export const currentViewIdComponentState = createComponentState<
string | undefined
>({
key: 'currentViewIdComponentState',
defaultValue: undefined,
});