7 lines
180 B
TypeScript
7 lines
180 B
TypeScript
import { atomFamily } from 'recoil';
|
|
|
|
export const currentRowEntityIdScopedState = atomFamily<string | null, string>({
|
|
key: 'currentRowEntityIdScopedState',
|
|
default: null,
|
|
});
|