0 votes
in ReactJS by

Why we need to be careful when spreading props on DOM elements?

1 Answer

0 votes
by

When we spread props we run into the risk of adding unknown HTML attributes, which is a bad practice. Instead we can use prop destructuring with ...rest operator, so it will add only required props. For example,

const ComponentA = () =>
  <ComponentB isDisplay={true} className={'componentStyle'} />

const ComponentB = ({ isDisplay, ...domProps }) =>
  <div {...domProps}>{'ComponentB'}</div>

Related questions

0 votes
asked Jul 2, 2019 in ReactJS by Venkatshastri
+1 vote
asked May 20, 2020 in ReactJS by GeorgeBell
...