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