4 lines
104 B
TypeScript
4 lines
104 B
TypeScript
import { createContext } from 'react';
|
|
|
|
export const RowIdContext = createContext<string | null>(null);
|