# Use If tag (jsx-use-if-tag) Use `If` tag instead of ternary operator. ## Rule Details The following patterns are considered warnings: ```js foo ?
: null foo ?
: ``` The following patterns are not warnings: ```js
``` ## When Not To Use It If you are not using JSX, you can disable this rule