* Wip refactoring view * Post merge conflicts * Fix review * Add create view capability * Fix create object missing view * Fix tests
9 lines
264 B
TypeScript
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,
|
|
});
|