(actionButtonCount: number)
| 108 | } |
| 109 | |
| 110 | export const getActionColWidth = (actionButtonCount: number) => { |
| 111 | if (actionButtonCount === 0) return 50 |
| 112 | return actionButtonCount * 30 + 20 |
| 113 | } |
| 114 | |
| 115 | export function renderComponent(content: ReactNode | null | undefined, fallbackComponent: ReactNode): ReactNode | null { |
| 116 | if (content === null) return null |
no outgoing calls
no test coverage detected