7 lines
182 B
TypeScript
7 lines
182 B
TypeScript
import { atomFamily } from 'recoil';
|
|
|
|
export const relationPickerHoverIndexScopedState = atomFamily<number, string>({
|
|
key: 'relationPickerHoverIndexScopedState',
|
|
default: 0,
|
|
});
|