noRenderHelperConvert render helper '{{functionName}}' to a React component. Functions that return JSX should be PascalCase components, not camelCase helpers.small-rules/no-render-helper-functionsDisallow non-component functions that return JSX or React elements.
noRenderHelperConvert render helper '{{functionName}}' to a React component. Functions that return JSX should be PascalCase components, not camelCase helpers.This rule does not accept options.
function createLabel() { return <div />; }function Component() { return <div />; }