Closed
Description
If you use <></>
fragment syntax the react-in-jsx-scope
rule will not declare React as in scope and the no-unused-vars will fail on the React import.
However React is required for fragment syntax as well as normal element syntax.
import React from 'react';
export default () => <>fragment</>;