* refactor: rename ui/table to ui/data-table * feat: add Table and TableSection components Closes #1806
7 lines
165 B
TypeScript
7 lines
165 B
TypeScript
import { atomFamily } from 'recoil';
|
|
|
|
export const isRowSelectedFamilyState = atomFamily<boolean, string>({
|
|
key: 'isRowSelectedFamilyState',
|
|
default: false,
|
|
});
|