Skip to content

no-underscore-react-props

Reports JSX props whose names start with _.

This rule reports any JSX attribute whose name begins with _.

Incorrect
<InventoryItemTooltip
key="inventory-tooltip"
_tooltipGradient={tooltipGradient}
/>
Correct
<InventoryItemTooltip
key="inventory-tooltip"
tooltipGradient={tooltipGradient}
/>