* refactor: rename ui/table to ui/data-table * feat: add Table and TableSection components Closes #1806
4 lines
100 B
TypeScript
4 lines
100 B
TypeScript
import { createContext } from 'react';
|
|
|
|
export const ColumnIndexContext = createContext<number>(0);
|