8 lines
380 B
TypeScript
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,
|
|
});
|