* Proof of concept ComponentState * Migrate to createState and createFamilyState * Refactor * Fix * Fix tests * Fix lint * Fix tests * Re-enable coverage
7 lines
254 B
TypeScript
7 lines
254 B
TypeScript
import { createComponentFamilyState } from '@/ui/utilities/state/component-state/utils/createComponentFamilyState';
|
|
|
|
export const noneScopedFamilyState = createComponentFamilyState<any, string>({
|
|
key: 'noneScopedFamilyState',
|
|
defaultValue: null,
|
|
});
|