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