import { atomFamily } from 'recoil'; import { StateScopeMapKey } from '@/ui/utilities/recoil-scope/scopes-internal/types/StateScopeMapKey'; export const createStateScopeMap = ({ key, defaultValue, }: { key: string; defaultValue: ValueType; }) => { return atomFamily({ key, default: defaultValue, }); };