Files
twenty/packages/twenty-front/src/modules/context-store/states/mainContextStoreComponentInstanceId.ts
T

8 lines
380 B
TypeScript

import { CONTEXT_STORE_INSTANCE_ID_DEFAULT_VALUE } from '@/context-store/constants/ContextStoreInstanceIdDefaultValue';
import { createState } from '@ui/utilities/state/utils/createState';
export const mainContextStoreComponentInstanceIdState = createState<string>({
key: 'mainContextStoreComponentInstanceIdState',
defaultValue: CONTEXT_STORE_INSTANCE_ID_DEFAULT_VALUE,
});