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