Files
twenty/front/src/modules/ui/table/contexts/RowIndexContext.ts
Weiko 7d900ad1c6 Reorganize context/states/selectors in dedicated folders (#1205)
* Reorganize context/states/selectors in dedicated folders

* linter
2023-08-14 15:08:47 -07:00

4 lines
97 B
TypeScript

import { createContext } from 'react';
export const RowIndexContext = createContext<number>(0);