Rules
no-children-map
Full Name in eslint-plugin-react-x
react-x/no-children-mapFull Name in @eslint-react/eslint-plugin
@eslint-react/no-children-mapPresets
- x
- recommended
- recommended-typescript
- recommended-type-checked
Description
Disallow the use of Children.map from the react package.
Using Children is uncommon and can lead to fragile code. See common alternatives.
Examples
Failing
import React, { Children } from "react";
interface MyComponentProps {
  children: React.ReactNode;
}
function MyComponent({ children }: MyComponentProps) {
  return (
    <div className="RowList">
      {Children.map(children, (child) => <div className="Row">{child}</div>)}
    </div>
  );
}Implementation
Further Reading
See Also
- no-children-count
 Prevents the use of- Children.countfrom the- reactpackage.
- no-children-for-each
 Prevents the use of- Children.forEachfrom the- reactpackage.
- no-children-only
 Prevents the use of- Children.onlyfrom the- reactpackage.
- no-children-to-array
 Prevents the use of- Children.toArrayfrom the- reactpackage.