Files
twenty/front/src/modules/ui/table/contexts/RowIdContext.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
104 B
TypeScript

import { createContext } from 'react';
export const RowIdContext = createContext<string | null>(null);