* refactor: rename ui/table to ui/data-table * feat: add Table and TableSection components Closes #1806
7 lines
136 B
TypeScript
7 lines
136 B
TypeScript
import { atom } from 'recoil';
|
|
|
|
export const numberOfTableRowsState = atom<number>({
|
|
key: 'numberOfTableRowsState',
|
|
default: 0,
|
|
});
|