7 lines
127 B
TypeScript
7 lines
127 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
export const tableRowIdsState = atom<string[]>({
|
|
key: 'tableRowIdsState',
|
|
default: [],
|
|
});
|