({ children, ...props }: { children?: React.ReactNode })
| 112 | ); |
| 113 | }, |
| 114 | td({ children, ...props }: { children?: React.ReactNode }) { |
| 115 | return <td className="px-4 py-3 border-t border-gray-200 dark:border-gray-700" {...props}>{children}</td>; |
| 116 | }, |
| 117 | code(props: { |
| 118 | inline?: boolean; |
| 119 | className?: string; |
nothing calls this directly
no outgoing calls
no test coverage detected