( ...args: Params )
| 41 | }; |
| 42 | |
| 43 | export const useParams = < |
| 44 | Params extends HtmlTableParams | RelationshipInHtmlRowParams, |
| 45 | >( |
| 46 | ...args: Params |
| 47 | ): Params => |
| 48 | useMemo( |
| 49 | () => args as any, |
| 50 | // eslint-disable-next-line react-hooks/exhaustive-deps |
| 51 | args, |
| 52 | ); |
| 53 | |
| 54 | export const useCells = ( |
| 55 | defaultCellIds: Ids, |
no outgoing calls
no test coverage detected
searching dependent graphs…