8 lines
273 B
TypeScript
8 lines
273 B
TypeScript
import { createComponentState } from '@/ui/utilities/state/component-state/utils/createComponentState';
|
|
|
|
export const viewPickerReferenceViewIdComponentState =
|
|
createComponentState<string>({
|
|
key: 'viewPickerReferenceViewIdComponentState',
|
|
defaultValue: '',
|
|
});
|